You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PyUnstable_Object_IsUniquelyReferenced(), PyUnstable_TryIncRef() and
PyUnstable_EnableTryIncRef() are no longer available on PyPy.
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Copy file name to clipboardExpand all lines: docs/api.rst
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ functions for old Python versions.
8
8
Supported Python versions:
9
9
10
10
* Python 3.6 - 3.15
11
-
* PyPy 2.7 and PyPy 3.6 - 3.10
11
+
* PyPy 3.6 - 3.12
12
12
13
13
C++03 and C++11 are supported on Python 3.6 and newer.
14
14
@@ -239,6 +239,20 @@ Python 3.14
239
239
240
240
See `PyUnstable_Object_IsUniquelyReferenced() documentation <https://docs.python.org/dev/c-api/object.html#c.PyUnstable_Object_IsUniquelyReferenced>`__.
241
241
242
+
Not available on PyPy. ``Py_REFCNT()`` semantics is different on PyPy.
243
+
244
+
.. c:function:: int PyUnstable_TryIncRef(PyObject *op)
245
+
246
+
See `PyUnstable_TryIncRef() documentation <https://docs.python.org/dev/c-api/object.html#c.PyUnstable_TryIncRef>`__.
247
+
248
+
Not available on PyPy. ``Py_REFCNT()`` semantics is different on PyPy.
0 commit comments