92:30ffedc3e418 | 93:2ce52f1cbaa1 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing a typing completer for Ruby. | 7 Module implementing a typing completer for Ruby. |
8 """ | 8 """ |
9 | |
10 import re | |
9 | 11 |
10 from PyQt4.QtCore import QObject, SIGNAL, QRegExp | 12 from PyQt4.QtCore import QObject, SIGNAL, QRegExp |
11 from PyQt4.Qsci import QsciLexerRuby | 13 from PyQt4.Qsci import QsciLexerRuby |
12 | 14 |
13 from .CompleterBase import CompleterBase | 15 from .CompleterBase import CompleterBase |