From 74c018a981c27c798307e832874448ed8b336cd2 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Tue, 31 Mar 2009 15:46:30 +0000 Subject: #5566: fix versionadded from PyLong ssize_t functions. --- Doc/c-api/long.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Doc/c-api/long.rst b/Doc/c-api/long.rst index 5caa89e..a013eb7 100644 --- a/Doc/c-api/long.rst +++ b/Doc/c-api/long.rst @@ -54,7 +54,7 @@ Long Integer Objects Return a new :ctype:`PyLongObject` object from a C :ctype:`Py_ssize_t`, or *NULL* on failure. - .. versionadded:: 2.5 + .. versionadded:: 2.6 .. cfunction:: PyObject* PyLong_FromSize_t(size_t v) @@ -62,7 +62,7 @@ Long Integer Objects Return a new :ctype:`PyLongObject` object from a C :ctype:`size_t`, or *NULL* on failure. - .. versionadded:: 2.5 + .. versionadded:: 2.6 .. cfunction:: PyObject* PyLong_FromLongLong(PY_LONG_LONG v) @@ -139,7 +139,7 @@ Long Integer Objects *pylong* is greater than :const:`PY_SSIZE_T_MAX`, an :exc:`OverflowError` is raised and ``-1`` will be returned. - .. versionadded:: 2.5 + .. versionadded:: 2.6 .. cfunction:: unsigned long PyLong_AsUnsignedLong(PyObject *pylong) -- cgit v0.12