Files for 2.1b1 distribution.
[python/dscho.git] / Lib / compiler / consts.py
blob3b256c16f4b335e1053e0e8cbe2da2c9293e949f
1 # code flags
2 CO_VARARGS = 1
3 CO_VARKEYWORDS = 2
5 # operation flags
6 OP_ASSIGN = 'OP_ASSIGN'
7 OP_DELETE = 'OP_DELETE'
8 OP_APPLY = 'OP_APPLY'