QScintilla/TypingCompleters/CompleterPython.py

branch
Py2 comp.
changeset 3526
b00ee853bceb
parent 3178
f25fc1364c88
child 3656
441956d8fce5
equal deleted inserted replaced
3525:66f4b8646622 3526:b00ee853bceb
6 """ 6 """
7 Module implementing a typing completer for Python. 7 Module implementing a typing completer for Python.
8 """ 8 """
9 9
10 from __future__ import unicode_literals 10 from __future__ import unicode_literals
11 try:
12 chr = unichr
13 except NameError:
14 pass
11 15
12 import re 16 import re
13 17
14 from PyQt4.QtCore import QRegExp 18 from PyQt4.QtCore import QRegExp
15 from PyQt4.Qsci import QsciLexerPython 19 from PyQt4.Qsci import QsciLexerPython

eric ide

mercurial