DebugClients/Python/DebugConfig.py

branch
debugger speed
changeset 5178
878ce843ca9f
parent 5171
f1e9eebd5469
child 5179
5f56410e7624
equal deleted inserted replaced
5174:8c48f5e0cd92 5178:878ce843ca9f
1 # -*- coding: utf-8 -*-
2
3 # Copyright (c) 2009 - 2016 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 ]
23
24 #
25 # eflag: noqa = M702

eric ide

mercurial