eric7/QScintilla/TypingCompleters/CompleterBase.py

branch
eric7
changeset 8318
962bce857696
parent 8312
800c432b34c8
child 8881
54e42bc2437a
equal deleted inserted replaced
8316:0c7a44af84bc 8318:962bce857696
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 PyQt5.QtCore import QObject 14 from PyQt6.QtCore import QObject
15 15
16 16
17 class CompleterBase(QObject): 17 class CompleterBase(QObject):
18 """ 18 """
19 Class implementing the base class for all completers. 19 Class implementing the base class for all completers.

eric ide

mercurial