DebugClients/Python/DebugConfig.py

changeset 5141
bc64243b7672
parent 5126
d28b92dabc2b
parent 5140
01484c0afbc6
child 5144
1ab536d25072
equal deleted inserted replaced
5126:d28b92dabc2b 5141:bc64243b7672
1 # -*- coding: utf-8 -*-
2
3 # Copyright (c) 2005 - 2016 Detlev Offenbach <detlev@die-offenbachs.de>
4 #
5
6 """
7 Module defining type strings for the different Python types.
8 """
9
10 ConfigVarTypeStrings = [
11 '__', 'NoneType', 'type',
12 'bool', 'int', 'long', 'float', 'complex',
13 'str', 'unicode', 'tuple', 'list',
14 'dict', 'dict-proxy', 'set', 'file', 'xrange',
15 'slice', 'buffer', 'class', 'instance',
16 'instance method', 'property', 'generator',
17 'function', 'builtin_function_or_method', 'code', 'module',
18 'ellipsis', 'traceback', 'frame', 'other'
19 ]
20
21 #
22 # eflag: FileType = Python2
23 # eflag: noqa = M601, M702

eric ide

mercurial