eric7/DebugClients/Python/DebugConfig.py

branch
eric7
changeset 8568
890dfe038613
parent 8312
800c432b34c8
child 8881
54e42bc2437a
equal deleted inserted replaced
8557:17fb004af51d 8568:890dfe038613
10 10
11 SpecialAttributes = ( 11 SpecialAttributes = (
12 "__bases__", "__class__", "__dict__", "__doc__", "__mro__", "__name__", 12 "__bases__", "__class__", "__dict__", "__doc__", "__mro__", "__name__",
13 "__qualname__", 13 "__qualname__",
14 ) 14 )
15
15 BatchSize = 200 16 BatchSize = 200
16 ConfigQtNames = ( 17 ConfigQtNames = (
17 'PyQt5.', 'PyQt6.', 'PySide2.', 'PySide6.', 'Shiboken.EnumType' 18 'PyQt5.', 'PyQt6.', 'PySide2.', 'PySide6.', 'Shiboken.EnumType'
18 ) 19 )
20
19 ConfigKnownQtTypes = ( 21 ConfigKnownQtTypes = (
20 '.QChar', '.QByteArray', '.QString', '.QStringList', '.QPoint', '.QPointF', 22 '.QByteArray', '.QPoint', '.QPointF', '.QLabel', '.QPushButton',
21 '.QRect', '.QRectF', '.QSize', '.QSizeF', '.QColor', '.QDate', '.QTime', 23 '.QRect', '.QRectF', '.QSize', '.QSizeF', '.QColor', '.QDate', '.QTime',
22 '.QDateTime', '.QDir', '.QFile', '.QFont', '.QUrl', '.QModelIndex', 24 '.QDateTime', '.QDir', '.QFile', '.QFont', '.QUrl', '.QModelIndex',
23 '.QRegExp', '.QRegularExpression', '.QAction', '.QKeySequence', 25 '.QRegExp', '.QRegularExpression', '.QAction', '.QKeySequence',
24 '.QDomAttr', '.QDomCharacterData', '.QDomComment', '.QDomDocument', 26 '.QDomAttr', '.QDomCharacterData', '.QDomComment', '.QDomDocument',
25 '.QDomElement', '.QDomText', '.QHostAddress', '.EnumType' 27 '.QDomElement', '.QDomText', '.QHostAddress', '.EnumType',
26 ) 28 )
29
30 NonExpandableTypes = (
31 'int', 'float', 'bool', 'NoneType', 'bytes', 'function', 'object',
32 'builtin_function_or_method', 'classmethod_descriptor', 'weakref',
33 'wrapper_descriptor', 'method_descriptor', 'property', 'method',
34 'getset_descriptor', 'member_descriptor',
35 )

eric ide

mercurial