11 user types '('). |
11 user types '('). |
12 """ |
12 """ |
13 |
13 |
14 from PyQt4.QtCore import QObject |
14 from PyQt4.QtCore import QObject |
15 |
15 |
|
16 |
16 class CompleterBase(QObject): |
17 class CompleterBase(QObject): |
17 """ |
18 """ |
18 Class implementing the base class for all completers. |
19 Class implementing the base class for all completers. |
19 """ |
20 """ |
20 def __init__(self, editor, parent = None): |
21 def __init__(self, editor, parent=None): |
21 """ |
22 """ |
22 Constructor |
23 Constructor |
23 |
24 |
24 @param editor reference to the editor object (QScintilla.Editor) |
25 @param editor reference to the editor object (QScintilla.Editor) |
25 @param parent reference to the parent object (QObject) |
26 @param parent reference to the parent object (QObject) |