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 |
|