Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
a3100de9ce508bb49dfb2616a32e3fd584b6064e
/
.
/
Lib
/
compiler
/
consts.py
blob: 3b256c16f4b335e1053e0e8cbe2da2c9293e949f [
file
] [
log
] [
blame
]
Jeremy Hylton
aa9d2d6
2000-02-08 18:57:51 +0000
[
diff
] [
blame
]
1
# code flags
2
CO_VARARGS
=
1
3
CO_VARKEYWORDS
=
2
4
5
# operation flags
6
OP_ASSIGN
=
'OP_ASSIGN'
7
OP_DELETE
=
'OP_DELETE'
8
OP_APPLY
=
'OP_APPLY'
9