[Python-checkins] CVS: python/dist/src/Tools/compiler/compiler consts.py,1.1,1.2
Jeremy Hylton
jhylton@users.sourceforge.net
2001年4月11日 23:39:26 -0700
Update of /cvsroot/python/python/dist/src/Tools/compiler/compiler
In directory usw-pr-cvs1:/tmp/cvs-serv6322
Modified Files:
consts.py
Log Message:
Define constants for types of scopes
Index: consts.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/compiler/compiler/consts.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** consts.py 2000年02月08日 18:57:51 1.1
--- consts.py 2001年04月12日 06:39:24 1.2
***************
*** 8,9 ****
--- 8,14 ----
OP_APPLY = 'OP_APPLY'
+ SC_LOCAL = 1
+ SC_GLOBAL = 2
+ SC_FREE = 3
+ SC_CELL = 4
+ SC_UNKNOWN = 5