summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/long.rst
diff options
context:
space:
mode:
authorHugo van Kemenade <1324225+hugovk@users.noreply.github.com>2024-11-19 14:51:57 (GMT)
committerHugo van Kemenade <1324225+hugovk@users.noreply.github.com>2024-11-19 14:52:44 (GMT)
commitadd43c3420b9700f5dc79da59e7d803cecb1c198 (patch)
tree4d63e5c5e2aa53efd2c65f28b55f5448d2935843 /Doc/c-api/long.rst
parent4d771977b17e5ffaa9c2e8a2e6f5d393f68fc63c (diff)
downloadcpython-add43c3420b9700f5dc79da59e7d803cecb1c198.zip
cpython-add43c3420b9700f5dc79da59e7d803cecb1c198.tar.gz
cpython-add43c3420b9700f5dc79da59e7d803cecb1c198.tar.bz2
Python 3.14.0a2v3.14.0a2
Diffstat (limited to 'Doc/c-api/long.rst')
-rw-r--r--Doc/c-api/long.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/c-api/long.rst b/Doc/c-api/long.rst
index 32bb451..cb12d43 100644
--- a/Doc/c-api/long.rst
+++ b/Doc/c-api/long.rst
@@ -590,7 +590,7 @@ distinguished from a number. Use :c:func:`PyErr_Occurred` to disambiguate.
return ``1`` when it's positive and ``0`` otherwise. Else set an
exception and return ``-1``.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. c:function:: int PyLong_IsNegative(PyObject *obj)
@@ -601,7 +601,7 @@ distinguished from a number. Use :c:func:`PyErr_Occurred` to disambiguate.
return ``1`` when it's negative and ``0`` otherwise. Else set an
exception and return ``-1``.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. c:function:: int PyLong_IsZero(PyObject *obj)
@@ -612,7 +612,7 @@ distinguished from a number. Use :c:func:`PyErr_Occurred` to disambiguate.
return ``1`` when it's zero and ``0`` otherwise. Else set an
exception and return ``-1``.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. c:function:: PyObject* PyLong_GetInfo(void)