[pypy-svn] r72957 - pypy/branch/cpython-extension/pypy/module/cpyext

xoraxax at codespeak.net xoraxax at codespeak.net
Sat Mar 27 17:03:13 CET 2010


Author: xoraxax
Date: Sat Mar 27 17:03:11 2010
New Revision: 72957

Modified:
   pypy/branch/cpython-extension/pypy/module/cpyext/macros.py
Log:
Comment debug output.

Modified: pypy/branch/cpython-extension/pypy/module/cpyext/macros.py
==============================================================================
--- pypy/branch/cpython-extension/pypy/module/cpyext/macros.py	(original)
+++ pypy/branch/cpython-extension/pypy/module/cpyext/macros.py	Sat Mar 27 17:03:11 2010
@@ -59,7 +59,7 @@
     from pypy.module.cpyext.methodobject import generic_cpy_call
     pto = obj.c_obj_type
     pto = rffi.cast(PyTypeObjectPtr, pto)
-    print >>sys.stderr, "Calling dealloc slot of", obj, \
-          "'s type which is", rffi.charp2str(pto.c_tp_name)
+    #print >>sys.stderr, "Calling dealloc slot of", obj, \
+    #      "'s type which is", rffi.charp2str(pto.c_tp_name)
     generic_cpy_call(space, pto.c_tp_dealloc, obj, decref_args=False)
 



More information about the Pypy-commit mailing list