DebugClients/Python/DebugConfig.py

changeset 3032
927a2f8b3669
parent 3021
801289962f4e
child 3160
209a07d7e401
equal deleted inserted replaced
3031:ed2eaa573ca5 3032:927a2f8b3669
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 ]
20 20
21 # 21 #
22 # eflag: FileType = Python2 22 # eflag: FileType = Python2

eric ide

mercurial