DebugClients/Python/DebugConfig.py

Sat, 30 Jul 2016 11:25:51 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 30 Jul 2016 11:25:51 +0200
branch
6_1_x
changeset 5077
0913929ad792
parent 4632
ca310db386ed
permissions
-rw-r--r--

Released updated Russian translations.

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

# Copyright (c) 2005 - 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: FileType = Python2
# eflag: noqa = M601, M702

eric ide

mercurial