QScintilla/TypingCompleters/CompleterBase.py

branch
Py2 comp.
changeset 3145
a9de05d4a22f
parent 3057
10516539f238
child 3161
06f57a834adf
equal deleted inserted replaced
3144:bb63e24383e4 3145:a9de05d4a22f
9 Typing completers are classes that implement some convenience actions, 9 Typing completers are classes that implement some convenience actions,
10 that are performed while the user is typing (e.g. insert ')' when the 10 that are performed while the user is typing (e.g. insert ')' when the
11 user types '('). 11 user types '(').
12 """ 12 """
13 13
14 from __future__ import unicode_literals # __IGNORE_WARNING__ 14 from __future__ import unicode_literals
15 15
16 from PyQt4.QtCore import QObject 16 from PyQt4.QtCore import QObject
17 17
18 18
19 class CompleterBase(QObject): 19 class CompleterBase(QObject):

eric ide

mercurial