mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
constants from transformer
This commit is contained in:
parent
9605c11c4c
commit
aa9d2d6123
2 changed files with 18 additions and 0 deletions
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…
Add table
Add a link
Reference in a new issue