--- a/src/eric7/DebugClients/Python/DebugConfig.py Wed Jul 13 11:16:20 2022 +0200 +++ b/src/eric7/DebugClients/Python/DebugConfig.py Wed Jul 13 14:55:47 2022 +0200 @@ -9,27 +9,66 @@ SpecialAttributes = ( - "__bases__", "__class__", "__dict__", "__doc__", "__mro__", "__name__", + "__bases__", + "__class__", + "__dict__", + "__doc__", + "__mro__", + "__name__", "__qualname__", ) BatchSize = 200 -ConfigQtNames = ( - 'PyQt5.', 'PyQt6.', 'PySide2.', 'PySide6.', 'Shiboken.EnumType' -) +ConfigQtNames = ("PyQt5.", "PyQt6.", "PySide2.", "PySide6.", "Shiboken.EnumType") ConfigKnownQtTypes = ( - '.QByteArray', '.QPoint', '.QPointF', '.QLabel', '.QPushButton', - '.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', + ".QByteArray", + ".QPoint", + ".QPointF", + ".QLabel", + ".QPushButton", + ".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", ) NonExpandableTypes = ( - 'int', 'float', 'bool', 'NoneType', 'bytes', 'function', 'object', - 'builtin_function_or_method', 'classmethod_descriptor', 'weakref', - 'wrapper_descriptor', 'method_descriptor', 'property', 'method', - 'getset_descriptor', 'member_descriptor', + "int", + "float", + "bool", + "NoneType", + "bytes", + "function", + "object", + "builtin_function_or_method", + "classmethod_descriptor", + "weakref", + "wrapper_descriptor", + "method_descriptor", + "property", + "method", + "getset_descriptor", + "member_descriptor", )