DebugClients/Python3/DebugConfig.py

Sat, 05 Dec 2015 13:20:36 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 05 Dec 2015 13:20:36 +0100
branch
6_1_x
changeset 4605
25851e211cfa
parent 4541
e8ddd9d76414
child 4631
5c1a96925da4
permissions
-rw-r--r--

Incorporated two little fixes (one slightly changed) provided by Tobias Rzepka.
(grafted from 623f95f1531b536006dce83eaee8bc11dace562b)

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

#
# eflag: noqa = M702

eric ide

mercurial