mirror of
https://github.com/python/cpython.git
synced 2024-12-03 23:06:43 +08:00
10 lines
137 B
Python
10 lines
137 B
Python
# code flags
|
|
CO_VARARGS = 1
|
|
CO_VARKEYWORDS = 2
|
|
|
|
# operation flags
|
|
OP_ASSIGN = 'OP_ASSIGN'
|
|
OP_DELETE = 'OP_DELETE'
|
|
OP_APPLY = 'OP_APPLY'
|
|
|