[pypy-svn] r34537 - pypy/dist/pypy/rlib/parsing

cfbolz at codespeak.net cfbolz at codespeak.net
Sun Nov 12 22:19:27 CET 2006


Author: cfbolz
Date: Sun Nov 12 22:19:26 2006
New Revision: 34537

Modified:
   pypy/dist/pypy/rlib/parsing/tree.py
Log:
remove print


Modified: pypy/dist/pypy/rlib/parsing/tree.py
==============================================================================
--- pypy/dist/pypy/rlib/parsing/tree.py	(original)
+++ pypy/dist/pypy/rlib/parsing/tree.py	Sun Nov 12 22:19:26 2006
@@ -102,7 +102,6 @@
     code.append("        else:")
     code.append("            return self.dispatch_table[node.symbol](self, node)")
     code.append("    raise VisitError(node)")
-    print "\n".join(code)
     exec py.code.Source("\n".join(code)).compile()
     return dispatch
 



More information about the Pypy-commit mailing list