Author: Armin Rigo <ar...@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);
+}
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to