DebugClients/Python/DebugConfig.py

changeset 0
de9c2efb9d02
child 13
1af94a91f439
equal deleted inserted replaced
-1:000000000000 0:de9c2efb9d02
1 # -*- coding: utf-8 -*-
2
3 # Copyright (c) 2005 - 2009 Detlev Offenbach <detlev@die-offenbachs.de>
4 #
5
6 """
7 Module defining type strings for the different Python types.
8 """
9
10 ConfigVarTypeStrings = ['__', 'NoneType', 'type',\
11 'bool', 'int', 'long', 'float', 'complex',\
12 'str', 'unicode', 'tuple', 'list',\
13 'dict', 'dict-proxy', 'set', 'file', 'xrange',\
14 'slice', 'buffer', 'class', 'instance',\
15 'instance method', 'property', 'generator',\
16 'function', 'builtin_function_or_method', 'code', 'module',\
17 'ellipsis', 'traceback', 'frame', 'other']

eric ide

mercurial