eric7/DebugClients/Python/DebugConfig.py

branch
eric7
changeset 8312
800c432b34c8
parent 7923
91e843545d9a
child 8568
890dfe038613
diff -r 4e8b98454baa -r 800c432b34c8 eric7/DebugClients/Python/DebugConfig.py
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric7/DebugClients/Python/DebugConfig.py	Sat May 15 18:45:04 2021 +0200
@@ -0,0 +1,26 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2005 - 2021 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module defining type strings for the different Python types.
+"""
+
+
+SpecialAttributes = (
+    "__bases__", "__class__", "__dict__", "__doc__", "__mro__", "__name__",
+    "__qualname__",
+)
+BatchSize = 200
+ConfigQtNames = (
+    'PyQt5.', 'PyQt6.', 'PySide2.', 'PySide6.', 'Shiboken.EnumType'
+)
+ConfigKnownQtTypes = (
+    '.QChar', '.QByteArray', '.QString', '.QStringList', '.QPoint', '.QPointF',
+    '.QRect', '.QRectF', '.QSize', '.QSizeF', '.QColor', '.QDate', '.QTime',
+    '.QDateTime', '.QDir', '.QFile', '.QFont', '.QUrl', '.QModelIndex',
+    '.QRegExp', '.QRegularExpression', '.QAction', '.QKeySequence',
+    '.QDomAttr', '.QDomCharacterData', '.QDomComment', '.QDomDocument',
+    '.QDomElement', '.QDomText', '.QHostAddress', '.EnumType'
+)

eric ide

mercurial