[pypy-svn] r72454 - pypy/trunk/pypy/module/cpyext

xoraxax at codespeak.net xoraxax at codespeak.net
Sat Mar 20 16:05:13 CET 2010


Author: xoraxax
Date: Sat Mar 20 16:05:11 2010
New Revision: 72454

Modified:
   pypy/trunk/pypy/module/cpyext/macros.py
Log:
Add a single comment.

Modified: pypy/trunk/pypy/module/cpyext/macros.py
==============================================================================
--- pypy/trunk/pypy/module/cpyext/macros.py	(original)
+++ pypy/trunk/pypy/module/cpyext/macros.py	Sat Mar 20 16:05:11 2010
@@ -14,6 +14,7 @@
         del state.py_objects_w2r[w_obj]
         ptr = ctypes.addressof(obj._obj._storage)
         del state.py_objects_r2w[ptr]
+        # XXX this will likely be somewhere else when we have grown a type object
         lltype.free(obj)
     else:
         assert obj.c_refcnt > 0



More information about the Pypy-commit mailing list