DebugClients/Python/DebugConfig.py

Sun, 17 Jan 2010 15:23:00 +0000

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 17 Jan 2010 15:23:00 +0000
changeset 72
015c7e35bd84
parent 13
1af94a91f439
child 790
2c0ea0163ef4
child 792
a13346916170
permissions
-rw-r--r--

Added code to use the PYTHONPATH environment setting in the debuggers.

# -*- coding: utf-8 -*-

# Copyright (c) 2005 - 2010 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']

eric ide

mercurial