8 |
8 |
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 |
|
14 from __future__ import unicode_literals # __IGNORE_WARNING__ |
13 |
15 |
14 from PyQt4.QtCore import QObject |
16 from PyQt4.QtCore import QObject |
15 |
17 |
16 |
18 |
17 class CompleterBase(QObject): |
19 class CompleterBase(QObject): |