eric7/DebugClients/Python/DebugConfig.py

branch
eric7
changeset 8312
800c432b34c8
parent 7923
91e843545d9a
child 8568
890dfe038613
equal deleted inserted replaced
8311:4e8b98454baa 8312:800c432b34c8
1 # -*- coding: utf-8 -*-
2
3 # Copyright (c) 2005 - 2021 Detlev Offenbach <detlev@die-offenbachs.de>
4 #
5
6 """
7 Module defining type strings for the different Python types.
8 """
9
10
11 SpecialAttributes = (
12 "__bases__", "__class__", "__dict__", "__doc__", "__mro__", "__name__",
13 "__qualname__",
14 )
15 BatchSize = 200
16 ConfigQtNames = (
17 'PyQt5.', 'PyQt6.', 'PySide2.', 'PySide6.', 'Shiboken.EnumType'
18 )
19 ConfigKnownQtTypes = (
20 '.QChar', '.QByteArray', '.QString', '.QStringList', '.QPoint', '.QPointF',
21 '.QRect', '.QRectF', '.QSize', '.QSizeF', '.QColor', '.QDate', '.QTime',
22 '.QDateTime', '.QDir', '.QFile', '.QFont', '.QUrl', '.QModelIndex',
23 '.QRegExp', '.QRegularExpression', '.QAction', '.QKeySequence',
24 '.QDomAttr', '.QDomCharacterData', '.QDomComment', '.QDomDocument',
25 '.QDomElement', '.QDomText', '.QHostAddress', '.EnumType'
26 )

eric ide

mercurial