Staging
v0.5.1
Revision f7adf2f473966ef33f6079ceb7115cb6cde3b521 authored by cvs2svn on 08 September 2001, 21:38:26 UTC, committed by cvs2svn on 08 September 2001, 21:38:26 UTC
1 parent f7e5714
Raw File
consts.py
from new import * # import all the CO_xxx flags
del classobj, code, function, instance, instancemethod, module

# operation flags
OP_ASSIGN = 'OP_ASSIGN'
OP_DELETE = 'OP_DELETE'
OP_APPLY = 'OP_APPLY'

SC_LOCAL = 1
SC_GLOBAL = 2
SC_FREE = 3
SC_CELL = 4
SC_UNKNOWN = 5
back to top