constants from transformer

This commit is contained in:
Jeremy Hylton 2000-02-08 18:57:51 +00:00
parent 9605c11c4c
commit aa9d2d6123
2 changed files with 18 additions and 0 deletions

9
Lib/compiler/consts.py Normal file
View File

@ -0,0 +1,9 @@
# code flags
CO_VARARGS = 1
CO_VARKEYWORDS = 2
# operation flags
OP_ASSIGN = 'OP_ASSIGN'
OP_DELETE = 'OP_DELETE'
OP_APPLY = 'OP_APPLY'

View File

@ -0,0 +1,9 @@
# code flags
CO_VARARGS = 1
CO_VARKEYWORDS = 2
# operation flags
OP_ASSIGN = 'OP_ASSIGN'
OP_DELETE = 'OP_DELETE'
OP_APPLY = 'OP_APPLY'