Author: Antonio Cuni <[email protected]> Branch: cpyext-nowrapper Changeset: r92571:1fd69c872733 Date: 2017-10-03 14:20 +0200 http://bitbucket.org/pypy/pypy/changeset/1fd69c872733/
Log: merge heads diff --git a/pypy/module/cpyext/object.py b/pypy/module/cpyext/object.py --- a/pypy/module/cpyext/object.py +++ b/pypy/module/cpyext/object.py @@ -74,7 +74,7 @@ @cpython_api([rffi.VOIDP], lltype.Void) def PyObject_GC_Del(space, obj): - PyObject_Free(space, obj) + PyObject_Free(obj) @cpython_api([PyObject], PyObjectP, error=CANNOT_FAIL) def _PyObject_GetDictPtr(space, op): _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
