diff -r fb9168c2e069 -r 8c48f5e0cd92 DebugClients/Python3/DebugConfig.py --- a/DebugClients/Python3/DebugConfig.py Thu Sep 15 21:49:13 2016 +0200 +++ b/DebugClients/Python3/DebugConfig.py Sun Sep 18 21:35:53 2016 +0200 @@ -7,15 +7,18 @@ 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', - 'instance method', 'property', 'generator', + 'method', 'property', 'generator', 'function', 'builtin_function_or_method', 'code', 'module', - 'ellipsis', 'traceback', 'frame', 'other' + 'ellipsis', 'traceback', 'frame', 'other', 'frozenset' ] #