DebugClients/Python3/DebugConfig.py

Thu, 24 Jul 2014 22:34:05 +0200

author
T.Rzepka <Tobias.Rzepka@gmail.com>
date
Thu, 24 Jul 2014 22:34:05 +0200
branch
5_5_x
changeset 3728
3fd874bf34e4
parent 3160
209a07d7e401
child 4021
195a471c327b
permissions
-rw-r--r--

Debug viewer always active.

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

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