DebugClients/Python/DebugConfig.py

Thu, 08 Sep 2011 19:38:39 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Thu, 08 Sep 2011 19:38:39 +0200
branch
5_1_x
changeset 1306
2136f10a9110
parent 791
9ec2ac20e54e
child 1509
c0b5e693b0eb
permissions
-rw-r--r--

Fixed an issue in the debugger not showing class variables.
(transplanted from 14d63fe71d53ba294e731f2e83262286f343c453)

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

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

#
# eflag: FileType = Python2

eric ide

mercurial