[pypy-svn] r40096 - pypy/dist/pypy/interpreter/astcompiler

ludal at codespeak.net ludal at codespeak.net
Thu Mar 8 20:07:26 CET 2007


Author: ludal
Date: Thu Mar  8 20:07:24 2007
New Revision: 40096

Modified:
   pypy/dist/pypy/interpreter/astcompiler/ast.py
Log:
hopefully fix annotation


Modified: pypy/dist/pypy/interpreter/astcompiler/ast.py
==============================================================================
--- pypy/dist/pypy/interpreter/astcompiler/ast.py	(original)
+++ pypy/dist/pypy/interpreter/astcompiler/ast.py	Thu Mar  8 20:07:24 2007
@@ -85,7 +85,7 @@
 
 Node.typedef = TypeDef('ASTNode',
                        __new__ = interp2app(descr_Node_new, unwrap_spec=[ObjSpace, W_Root, int]),
-                       __repr__ = interp2app(Node.descr_repr, unwrap_spec=['self', ObjSpace] ),
+                       #__repr__ = interp2app(Node.descr_repr, unwrap_spec=['self', ObjSpace] ),
                        getChildNodes = interp2app(Node.descr_getChildNodes, unwrap_spec=[ 'self', ObjSpace ] ),
                        accept = interp2app(descr_node_accept, unwrap_spec=[ ObjSpace, W_Root, W_Root ] ),
                        mutate = interp2app(descr_node_mutate, unwrap_spec=[ ObjSpace, W_Root, W_Root ] ),



More information about the Pypy-commit mailing list