DebugClients/Python/DebugConfig.py

Fri, 14 Oct 2016 23:02:38 +0200

author
T.Rzepka <Tobias.Rzepka@gmail.com>
date
Fri, 14 Oct 2016 23:02:38 +0200
changeset 5239
27f56dc07b5b
parent 5179
5f56410e7624
child 5272
5684dd6667e6
permissions
-rw-r--r--

Merge with default branch.

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

# Copyright (c) 2005 - 2016 Detlev Offenbach <detlev@die-offenbachs.de>
#

"""
Module defining type strings for the different Python types.
"""

#
# Keep this list in sync with Debugger.Config.ConfigVarTypeFilters
#
ConfigVarTypeStrings = [
    '__', 'NoneType', 'type',
    'bool', 'int', 'long', 'float', 'complex',
    'str', 'unicode', 'tuple', 'list',
    'dict', 'dict-proxy', 'set', 'file', 'xrange',
    'slice', 'buffer', 'class', 'instance',
    'method', 'property', 'generator',
    'function', 'builtin_function_or_method', 'code', 'module',
    'ellipsis', 'traceback', 'frame', 'other', 'frozenset'
]

#
# eflag: noqa = M702

eric ide

mercurial