diff options
Diffstat (limited to 'Lib/compiler/consts.py')
-rw-r--r-- | Lib/compiler/consts.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/compiler/consts.py b/Lib/compiler/consts.py index ae3d18d..c4a4868 100644 --- a/Lib/compiler/consts.py +++ b/Lib/compiler/consts.py @@ -1,6 +1,5 @@ -# code flags -CO_VARARGS = 1 -CO_VARKEYWORDS = 2 +from new import * # import all the CO_xxx flags +del classobj, code, function, instance, instancemethod, module # operation flags OP_ASSIGN = 'OP_ASSIGN' |