diff -r 3d48094ba8e1 -r 817ef8e0fa66 eric6/DebugClients/Python/DebugConfig.py --- a/eric6/DebugClients/Python/DebugConfig.py Sun Dec 06 12:46:00 2020 +0100 +++ b/eric6/DebugClients/Python/DebugConfig.py Sun Dec 06 17:43:11 2020 +0100 @@ -7,20 +7,11 @@ Module defining type strings for the different Python types. """ -# -# Keep this list in sync with Debugger.Config.ConfigVarTypeFilters -# -ConfigVarTypeStrings = [ - '__', 'NoneType', 'type', - 'bool', 'int', 'long', 'float', 'complex', - 'str', 'unicode', 'tuple', 'list', - 'dict', 'dict-proxy', 'set', 'file', 'xrange', - 'slice', 'buffer', 'class', 'instance', - 'method', 'property', 'generator', - 'function', 'builtin_function_or_method', 'code', 'module', - 'ellipsis', 'traceback', 'frame', 'other', 'frozenset', 'bytes', -] +SpecialAttributes = ( + "__bases__", "__class__", "__dict__", "__doc__", "__mro__", "__name__", + "__qualname__", +) BatchSize = 200 ConfigQtNames = ( 'PyQt5.', 'PySide2.', 'Shiboken.EnumType'