DebugClients/Python3/DebugConfig.py

Sat, 30 May 2015 13:27:43 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 30 May 2015 13:27:43 +0200
changeset 4269
5ba44a2de31a
parent 4021
195a471c327b
child 4541
e8ddd9d76414
permissions
-rw-r--r--

Simplified the debugger backend connection code for the Python2 and Python3 debuggers.

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

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