constants from transformer
This commit is contained in:
parent
9605c11c4c
commit
aa9d2d6123
9
Lib/compiler/consts.py
Normal file
9
Lib/compiler/consts.py
Normal 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'
|
||||
|
9
Tools/compiler/compiler/consts.py
Normal file
9
Tools/compiler/compiler/consts.py
Normal 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'
|
||||
|
Loading…
x
Reference in New Issue
Block a user