[pypy-svn] r16568 - pypy/dist/pypy/interpreter/stablecompiler

hpk at codespeak.net hpk at codespeak.net
Fri Aug 26 10:37:56 CEST 2005


Author: hpk
Date: Fri Aug 26 10:37:56 2005
New Revision: 16568

Modified:
   pypy/dist/pypy/interpreter/stablecompiler/transformer.py
Log:
rip out print statement


Modified: pypy/dist/pypy/interpreter/stablecompiler/transformer.py
==============================================================================
--- pypy/dist/pypy/interpreter/stablecompiler/transformer.py	(original)
+++ pypy/dist/pypy/interpreter/stablecompiler/transformer.py	Fri Aug 26 10:37:56 2005
@@ -936,7 +936,6 @@
         l = self.com_node(node)
         if l.__class__ in (Name, Slice, Subscript, Getattr):
             return l
-        print node # XXX
         raise SyntaxError, "can't assign to %s" % l.__class__.__name__
 
     def com_assign(self, node, assigning):



More information about the Pypy-commit mailing list