DebugClients/Python3/DebugConfig.py

Tue, 30 Aug 2016 20:13:21 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 30 Aug 2016 20:13:21 +0200
branch
6_1_x
changeset 5116
046baf6c79be
parent 4632
ca310db386ed
child 5169
74e000797a93
permissions
-rw-r--r--

Fixed an issue in the debugger backend for Python3 causing a trailing u in a command line argument to be deleted.
(grafted from ed2f37c1f6b68f9d6f3d7e258b359724adbfdab1)

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