[pypy-svn] r4930 - pypy/branch/src-newobjectmodel/pypy/objspace/std

hpk at codespeak.net hpk at codespeak.net
Fri Jun 4 22:35:25 CEST 2004


Author: hpk
Date: Fri Jun  4 22:35:25 2004
New Revision: 4930

Modified:
   pypy/branch/src-newobjectmodel/pypy/objspace/std/objspace.py
Log:
uncommment print statement ...


Modified: pypy/branch/src-newobjectmodel/pypy/objspace/std/objspace.py
==============================================================================
--- pypy/branch/src-newobjectmodel/pypy/objspace/std/objspace.py	(original)
+++ pypy/branch/src-newobjectmodel/pypy/objspace/std/objspace.py	Fri Jun  4 22:35:25 2004
@@ -209,7 +209,7 @@
         SlotWrapperType = type(type(None).__repr__)
         if isinstance(x, (types.FunctionType, types.BuiltinFunctionType, SlotWrapperType)):
             return cpythonobject.W_BuiltinFunctionObject(self, x) 
-        print "cpython wrapping %r (%s)" % (x, type(x))
+        #print "cpython wrapping %r (%s)" % (x, type(x))
         #if hasattr(x, '__bases__'): 
         #    print "cpython wrapping a class %r (%s)" % (x, type(x))
             #raise TypeError, "cannot wrap classes"



More information about the Pypy-commit mailing list