diff options
Diffstat (limited to 'Lib/compiler/consts.py')
-rw-r--r-- | Lib/compiler/consts.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/compiler/consts.py b/Lib/compiler/consts.py new file mode 100644 index 0000000000..3b256c16f4 --- /dev/null +++ b/Lib/compiler/consts.py @@ -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' + |