DebugClients/Python/DebugConfig.py

Tue, 04 Jan 2011 18:44:51 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 04 Jan 2011 18:44:51 +0100
branch
5_0_x
changeset 807
ecc71fdd67f1
parent 792
a13346916170
permissions
-rw-r--r--

Added file type markers to all Python 2 debugger backend files.

# -*- 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