diff -r 000000000000 -r de9c2efb9d02 DebugClients/Python/DebugConfig.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/DebugClients/Python/DebugConfig.py Mon Dec 28 16:03:33 2009 +0000 @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2005 - 2009 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""" +Module defining type strings for the different Python types. +""" + +ConfigVarTypeStrings = ['__', 'NoneType', 'type',\ + 'bool', 'int', 'long', 'float', 'complex',\ + 'str', 'unicode', 'tuple', 'list',\ + 'dict', 'dict-proxy', 'set', 'file', 'xrange',\ + 'slice', 'buffer', 'class', 'instance',\ + 'instance method', 'property', 'generator',\ + 'function', 'builtin_function_or_method', 'code', 'module',\ + 'ellipsis', 'traceback', 'frame', 'other']