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

xoraxax at codespeak.net xoraxax at codespeak.net
Thu Mar 25 22:24:42 CET 2010


Author: xoraxax
Date: Thu Mar 25 22:24:41 2010
New Revision: 72853

Modified:
   pypy/branch/cpython-extension/pypy/module/cpyext/object.py
Log:
Remove comment.

Modified: pypy/branch/cpython-extension/pypy/module/cpyext/object.py
==============================================================================
--- pypy/branch/cpython-extension/pypy/module/cpyext/object.py	(original)
+++ pypy/branch/cpython-extension/pypy/module/cpyext/object.py	Thu Mar 25 22:24:41 2010
@@ -17,7 +17,6 @@
 
 @cpython_api([rffi.VOIDP_real], lltype.Void)
 def PyObject_Del(space, obj):
-    # XXX cast object according to the basesize in pto
     lltype.free(obj, flavor='raw')
 
 @cpython_api([PyObject], lltype.Void)



More information about the Pypy-commit mailing list