[pypy-svn] r66587 - pypy/branch/parser-compiler/pypy/interpreter/astcompiler

benjamin at codespeak.net benjamin at codespeak.net
Fri Jul 24 15:56:08 CEST 2009


Author: benjamin
Date: Fri Jul 24 15:56:07 2009
New Revision: 66587

Modified:
   pypy/branch/parser-compiler/pypy/interpreter/astcompiler/asthelpers.py
Log:
fix method name

Modified: pypy/branch/parser-compiler/pypy/interpreter/astcompiler/asthelpers.py
==============================================================================
--- pypy/branch/parser-compiler/pypy/interpreter/astcompiler/asthelpers.py	(original)
+++ pypy/branch/parser-compiler/pypy/interpreter/astcompiler/asthelpers.py	Fri Jul 24 15:56:07 2009
@@ -18,7 +18,7 @@
 
 class __extend__(ast.Tuple):
 
-    def as_list_w(self, space):
+    def as_node_list(self, space):
         return self.elts
 
 



More information about the Pypy-commit mailing list