Author: Matti Picus <[email protected]>
Branch: call-via-pyobj
Changeset: r85639:64b0facf01f3
Date: 2016-07-09 16:16 -0400
http://bitbucket.org/pypy/pypy/changeset/64b0facf01f3/

Log:    cleanup

diff --git a/pypy/module/cpyext/test/array.c b/pypy/module/cpyext/test/array.c
--- a/pypy/module/cpyext/test/array.c
+++ b/pypy/module/cpyext/test/array.c
@@ -2147,8 +2147,6 @@
 static PyObject *
 switch_multiply(void)
 {
-    fprintf(stdout, "switching nb_multiply from %p to %p\n", 
-        Arraytype.tp_as_number->nb_multiply, array_base_multiply);
     Arraytype.tp_as_number->nb_multiply = array_base_multiply;
     Py_RETURN_NONE;
 };
diff --git a/pypy/module/cpyext/typeobject.py b/pypy/module/cpyext/typeobject.py
--- a/pypy/module/cpyext/typeobject.py
+++ b/pypy/module/cpyext/typeobject.py
@@ -717,8 +717,6 @@
 
 def py_type_ready(space, pto):
     if pto.c_tp_flags & Py_TPFLAGS_READY:
-        name = rffi.charp2str(pto.c_tp_name)
-        print 'py_type_ready',name, 'but PyTP_FLAGS_READY is set'
         return
     type_realize(space, rffi.cast(PyObject, pto))
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to