[pypy-svn] r7509 - pypy/trunk/src/pypy/translator

hpk at codespeak.net hpk at codespeak.net
Sat Nov 20 15:32:27 CET 2004


Author: hpk
Date: Sat Nov 20 15:32:27 2004
New Revision: 7509

Modified:
   pypy/trunk/src/pypy/translator/genc.py
Log:
nuke print statement which messes up running the tests ... 


Modified: pypy/trunk/src/pypy/translator/genc.py
==============================================================================
--- pypy/trunk/src/pypy/translator/genc.py	(original)
+++ pypy/trunk/src/pypy/translator/genc.py	Sat Nov 20 15:32:27 2004
@@ -200,7 +200,7 @@
                 func.func_doc.lstrip().startswith('NOT_RPYTHON')):
                 print "skipped", printable_name
                 return self.skipped_function(func)
-            print "nameof", printable_name
+            #print "nameof", printable_name
         name = self.uniquename('gfunc_' + func.__name__)
         self.globaldecl.append('static PyObject* %s;' % name)
         self.initcode.append('INITCHK(%s = PyCFunction_New('



More information about the Pypy-commit mailing list