DebugClients/Python3/DebugConfig.py

Sun, 27 Nov 2011 19:38:09 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 27 Nov 2011 19:38:09 +0100
changeset 1471
af9e4f5a34b5
parent 791
9ec2ac20e54e
child 1509
c0b5e693b0eb
permissions
-rw-r--r--

Fixed the last change for the Python3 backend.

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

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

eric ide

mercurial