5 |
5 |
6 """ |
6 """ |
7 Module defining type strings for the different Python types. |
7 Module defining type strings for the different Python types. |
8 """ |
8 """ |
9 |
9 |
|
10 # |
|
11 # Keep this list in sync with Debugger.Config.ConfigVarTypeFilters |
|
12 # |
10 ConfigVarTypeStrings = [ |
13 ConfigVarTypeStrings = [ |
11 '__', 'NoneType', 'type', |
14 '__', 'NoneType', 'type', |
12 'bool', 'int', 'long', 'float', 'complex', |
15 'bool', 'int', 'long', 'float', 'complex', |
13 'str', 'unicode', 'tuple', 'list', |
16 'str', 'unicode', 'tuple', 'list', |
14 'dict', 'dict-proxy', 'set', 'file', 'xrange', |
17 'dict', 'dict-proxy', 'set', 'file', 'xrange', |
15 'slice', 'buffer', 'class', 'instance', |
18 'slice', 'buffer', 'class', 'instance', |
16 'method', 'property', 'generator', |
19 'method', 'property', 'generator', |
17 'function', 'builtin_function_or_method', 'code', 'module', |
20 'function', 'builtin_function_or_method', 'code', 'module', |
18 'ellipsis', 'traceback', 'frame', 'other' |
21 'ellipsis', 'traceback', 'frame', 'other', 'frozenset' |
19 ] |
22 ] |
20 |
23 |
21 # |
24 # |
22 # eflag: noqa = M702 |
25 # eflag: noqa = M702 |