[pypy-commit] pypy cpyext-ext: add a bit of context to print statement

mattip pypy.commits at gmail.com
Mon Mar 21 15:28:21 EDT 2016


Author: mattip <matti.picus at gmail.com>
Branch: cpyext-ext
Changeset: r83232:ead04fcd08d5
Date: 2016-03-21 21:13 +0200
http://bitbucket.org/pypy/pypy/changeset/ead04fcd08d5/

Log:	add a bit of context to print statement

diff --git a/pypy/module/cpyext/api.py b/pypy/module/cpyext/api.py
--- a/pypy/module/cpyext/api.py
+++ b/pypy/module/cpyext/api.py
@@ -841,7 +841,7 @@
             ob = rawrefcount.next_dead(PyObject)
             if not ob:
                 break
-            print ob
+            print 'deallocating PyObject', ob
             _Py_Dealloc(space, ob)
         print 'dealloc_trigger DONE'
         return "RETRY"


More information about the pypy-commit mailing list