DebugClients/Python3/DebugConfig.py

Mon, 22 Feb 2016 22:26:21 +0100

author
T.Rzepka <Tobias.Rzepka@gmail.com>
date
Mon, 22 Feb 2016 22:26:21 +0100
branch
6_1_x
changeset 4835
371c03e08f7b
parent 4632
ca310db386ed
child 5169
74e000797a93
permissions
-rw-r--r--

Improved shell completer for local variables and behavior of Python versions equaled.
(grafted from 803bf753032a52c5c6706d5e87444e061d13ad29)

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

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