diff options
author | Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> | 2024-11-19 14:51:57 (GMT) |
---|---|---|
committer | Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> | 2024-11-19 14:52:44 (GMT) |
commit | add43c3420b9700f5dc79da59e7d803cecb1c198 (patch) | |
tree | 4d63e5c5e2aa53efd2c65f28b55f5448d2935843 /Doc/c-api/long.rst | |
parent | 4d771977b17e5ffaa9c2e8a2e6f5d393f68fc63c (diff) | |
download | cpython-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.rst | 6 |
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) |