]> git.proxmox.com Git - mirror_edk2.git/blame - AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/consts.py
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / compiler / consts.py
CommitLineData
4710c53d 1# operation flags\r
2OP_ASSIGN = 'OP_ASSIGN'\r
3OP_DELETE = 'OP_DELETE'\r
4OP_APPLY = 'OP_APPLY'\r
5\r
6SC_LOCAL = 1\r
7SC_GLOBAL_IMPLICIT = 2\r
8SC_GLOBAL_EXPLICT = 3\r
9SC_FREE = 4\r
10SC_CELL = 5\r
11SC_UNKNOWN = 6\r
12\r
13CO_OPTIMIZED = 0x0001\r
14CO_NEWLOCALS = 0x0002\r
15CO_VARARGS = 0x0004\r
16CO_VARKEYWORDS = 0x0008\r
17CO_NESTED = 0x0010\r
18CO_GENERATOR = 0x0020\r
19CO_GENERATOR_ALLOWED = 0\r
20CO_FUTURE_DIVISION = 0x2000\r
21CO_FUTURE_ABSIMPORT = 0x4000\r
22CO_FUTURE_WITH_STATEMENT = 0x8000\r
23CO_FUTURE_PRINT_FUNCTION = 0x10000\r