Author: Antonio Cuni <[email protected]>
Branch: cpyext-nowrapper
Changeset: r92583:7fef75641ebf
Date: 2017-10-03 17:54 +0200
http://bitbucket.org/pypy/pypy/changeset/7fef75641ebf/

Log:    typo

diff --git a/pypy/module/cpyext/typeobject.py b/pypy/module/cpyext/typeobject.py
--- a/pypy/module/cpyext/typeobject.py
+++ b/pypy/module/cpyext/typeobject.py
@@ -385,7 +385,7 @@
         subtype = rffi.cast(PyTypeObjectPtr, make_ref(space, w_subtype))
         w_obj = generic_cpy_call(space, tp_new, subtype, w_args, w_kwds)
     finally:
-        decref_w_obj(w_subtype)
+        decref_w_obj(space, w_subtype)
     return w_obj
 
 @specialize.memo()
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to