[Python-checkins] python/nondist/sandbox/ast asdl.py,1.7,1.8

bckfnn@sourceforge.net bckfnn@sourceforge.net
Sun, 21 Apr 2002 04:22:25 -0700


Update of /cvsroot/python/python/nondist/sandbox/ast
In directory usw-pr-cvs1:/tmp/cvs-serv4366

Modified Files:
	asdl.py 
Log Message:
Added 'object' as a standard asdl builtin type.



Index: asdl.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/ast/asdl.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** asdl.py	19 Apr 2002 12:35:21 -0000	1.7
--- asdl.py	21 Apr 2002 11:22:23 -0000	1.8
***************
*** 200,204 ****
          return Field(type, opt=1)
  
! builtin_types = ("identifier", "string", "int", "bool")
  
  # below is a collection of classes to capture the AST of an AST :-)
--- 200,204 ----
          return Field(type, opt=1)
  
! builtin_types = ("identifier", "string", "int", "bool", "object")
  
  # below is a collection of classes to capture the AST of an AST :-)