[Python-checkins] CVS: python/dist/src/Tools/compiler/compiler consts.py,1.2,1.2.2.1

Jeremy Hylton jhylton@users.sourceforge.net
Mon, 17 Dec 2001 15:57:21 -0800


Update of /cvsroot/python/python/dist/src/Tools/compiler/compiler
In directory usw-pr-cvs1:/tmp/cvs-serv29342

Modified Files:
      Tag: release21-maint
	consts.py 
Log Message:
Backport bugfixes from the trunk.

Only real change is to track movement of CO_ consts to here.



Index: consts.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/compiler/compiler/Attic/consts.py,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -C2 -d -r1.2 -r1.2.2.1
*** consts.py	2001/04/12 06:39:24	1.2
--- consts.py	2001/12/17 23:57:17	1.2.2.1
***************
*** 1,6 ****
- # code flags
- CO_VARARGS = 1
- CO_VARKEYWORDS = 2
- 
  # operation flags
  OP_ASSIGN = 'OP_ASSIGN'
--- 1,2 ----
***************
*** 13,14 ****
--- 9,16 ----
  SC_CELL = 4
  SC_UNKNOWN = 5
+ 
+ CO_OPTIMIZED = 0x0001
+ CO_NEWLOCALS = 0x0002
+ CO_VARARGS = 0x0004
+ CO_VARKEYWORDS = 0x0008
+ CO_NESTED = 0x0010