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