|
1 # -*- coding: utf-8 -*- |
|
2 |
|
3 # Copyright (c) 2009 Detlev Offenbach <detlev@die-offenbachs.de> |
|
4 # |
|
5 |
|
6 """ |
|
7 Module defining type strings for the different Python types. |
|
8 """ |
|
9 |
|
10 ConfigVarTypeStrings = ['__', 'NoneType', 'type',\ |
|
11 'bool', 'int', 'long', 'float', 'complex',\ |
|
12 'str', 'unicode', 'tuple', 'list',\ |
|
13 'dict', 'dict-proxy', 'set', 'file', 'xrange',\ |
|
14 'slice', 'buffer', 'class', 'instance',\ |
|
15 'instance method', 'property', 'generator',\ |
|
16 'function', 'builtin_function_or_method', 'code', 'module',\ |
|
17 'ellipsis', 'traceback', 'frame', 'other'] |