[Python-checkins] r76059 - sandbox/trunk/2to3/lib2to3/pytree.py

benjamin.peterson python-checkins at python.org
Mon Nov 2 18:43:48 CET 2009


Author: benjamin.peterson
Date: Mon Nov  2 18:43:47 2009
New Revision: 76059

Log:
tuples are no longer used for children

Modified:
   sandbox/trunk/2to3/lib2to3/pytree.py

Modified: sandbox/trunk/2to3/lib2to3/pytree.py
==============================================================================
--- sandbox/trunk/2to3/lib2to3/pytree.py	(original)
+++ sandbox/trunk/2to3/lib2to3/pytree.py	Mon Nov  2 18:43:47 2009
@@ -45,7 +45,6 @@
     # Default values for instance variables
     type = None    # int: token number (< 256) or symbol number (>= 256)
     parent = None  # Parent node pointer, or None
-    children = ()  # Tuple of subnodes
     was_changed = False
 
     def __new__(cls, *args, **kwds):


More information about the Python-checkins mailing list