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 ConfigVarTypeStrings = [ |
10 ConfigVarTypeStrings = [ |
11 '__', 'NoneType', 'type',\ |
11 '__', 'NoneType', 'type', |
12 'bool', 'int', 'long', 'float', 'complex',\ |
12 'bool', 'int', 'long', 'float', 'complex', |
13 'str', 'unicode', 'tuple', 'list',\ |
13 'str', 'unicode', 'tuple', 'list', |
14 'dict', 'dict-proxy', 'set', 'file', 'xrange',\ |
14 'dict', 'dict-proxy', 'set', 'file', 'xrange', |
15 'slice', 'buffer', 'class', 'instance',\ |
15 'slice', 'buffer', 'class', 'instance', |
16 'instance method', 'property', 'generator',\ |
16 'instance method', 'property', 'generator', |
17 'function', 'builtin_function_or_method', 'code', 'module',\ |
17 'function', 'builtin_function_or_method', 'code', 'module', |
18 'ellipsis', 'traceback', 'frame', 'other' |
18 'ellipsis', 'traceback', 'frame', 'other' |
19 ] |
19 ] |