[pypy-commit] pypy default: For binary compatibility with PyPy 5.1

arigo pypy.commits at gmail.com
Mon May 9 04:54:24 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r84328:c86b42dd7613
Date: 2016-05-09 10:53 +0200
http://bitbucket.org/pypy/pypy/changeset/c86b42dd7613/

Log:	For binary compatibility with PyPy 5.1

diff --git a/pypy/module/cpyext/src/abstract.c b/pypy/module/cpyext/src/abstract.c
--- a/pypy/module/cpyext/src/abstract.c
+++ b/pypy/module/cpyext/src/abstract.c
@@ -326,3 +326,9 @@
     return tmp;
 }
 
+/* for binary compatibility with 5.1 */
+PyAPI_FUNC(void) PyPyObject_Del(PyObject *);
+void PyPyObject_Del(PyObject *op)
+{
+    PyObject_FREE(op);
+}


More information about the pypy-commit mailing list