[Python-checkins] r73278 - python/trunk/Parser/asdl.py

benjamin.peterson python-checkins at python.org
Mon Jun 8 00:33:11 CEST 2009


Author: benjamin.peterson
Date: Mon Jun  8 00:33:11 2009
New Revision: 73278

Log:
inherit from object

Modified:
   python/trunk/Parser/asdl.py

Modified: python/trunk/Parser/asdl.py
==============================================================================
--- python/trunk/Parser/asdl.py	(original)
+++ python/trunk/Parser/asdl.py	Mon Jun  8 00:33:11 2009
@@ -226,7 +226,7 @@
 # not sure if any of the methods are useful yet, but I'm adding them
 # piecemeal as they seem helpful
 
-class AST:
+class AST(object):
     pass # a marker class
 
 class Module(AST):


More information about the Python-checkins mailing list