eric6/DebugClients/Python/DebugConfig.py

changeset 6942
2602857055c5
parent 6645
ad476851d7e0
child 6969
fd7af2312383
equal deleted inserted replaced
6941:f99d60d6b59b 6942:2602857055c5
1 # -*- coding: utf-8 -*-
2
3 # Copyright (c) 2005 - 2019 Detlev Offenbach <detlev@die-offenbachs.de>
4 #
5
6 """
7 Module defining type strings for the different Python types.
8 """
9
10 #
11 # Keep this list in sync with Debugger.Config.ConfigVarTypeFilters
12 #
13 ConfigVarTypeStrings = [
14 '__', 'NoneType', 'type',
15 'bool', 'int', 'long', 'float', 'complex',
16 'str', 'unicode', 'tuple', 'list',
17 'dict', 'dict-proxy', 'set', 'file', 'xrange',
18 'slice', 'buffer', 'class', 'instance',
19 'method', 'property', 'generator',
20 'function', 'builtin_function_or_method', 'code', 'module',
21 'ellipsis', 'traceback', 'frame', 'other', 'frozenset',
22 # Special case for Python 2: don't add 'instancemethod' to
23 # ConfigVarTypeFilters and leave it always at last position
24 'instancemethod'
25 ]
26
27 #
28 # eflag: noqa = M702

eric ide

mercurial