From: Inada Naoki Date: Mon, 29 Jun 2020 05:26:27 +0000 (+0900) Subject: bpo-41123: Doc: PyLong_FromUnicode will be removed in 3.10 (GH-21205) X-Git-Tag: v3.9.0b4~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=02134dae448c7885c9c07adfc6970f878db33372;p=thirdparty%2FPython%2Fcpython.git bpo-41123: Doc: PyLong_FromUnicode will be removed in 3.10 (GH-21205) --- diff --git a/Doc/c-api/long.rst b/Doc/c-api/long.rst index c5c2aa60dcc3..8ecbe221f2d4 100644 --- a/Doc/c-api/long.rst +++ b/Doc/c-api/long.rst @@ -100,7 +100,7 @@ distinguished from a number. Use :c:func:`PyErr_Occurred` to disambiguate. string is first encoded to a byte string using :c:func:`PyUnicode_EncodeDecimal` and then converted using :c:func:`PyLong_FromString`. - .. deprecated-removed:: 3.3 4.0 + .. deprecated-removed:: 3.3 3.10 Part of the old-style :c:type:`Py_UNICODE` API; please migrate to using :c:func:`PyLong_FromUnicodeObject`.