cpython/Lib/compiler/consts.py

14 lines
267 B
Python
Raw Normal View History

from new import * # import all the CO_xxx flags
del classobj, code, function, instance, instancemethod, module
2000-02-08 14:57:51 -04:00
# operation flags
OP_ASSIGN = 'OP_ASSIGN'
OP_DELETE = 'OP_DELETE'
OP_APPLY = 'OP_APPLY'
2001-04-12 03:39:24 -03:00
SC_LOCAL = 1
SC_GLOBAL = 2
SC_FREE = 3
SC_CELL = 4
SC_UNKNOWN = 5