From a267ddaf46df763a8e666b8bfb9455ee2acbd657 Mon Sep 17 00:00:00 2001 From: Inada Naoki Date: Mon, 29 Jun 2020 13:01:59 +0900 Subject: [PATCH] bpo-41123: Doc: PyLong_FromUnicode will be removed in 3.10 --- Doc/c-api/long.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/c-api/long.rst b/Doc/c-api/long.rst index c5c2aa60dcc35c1..8ecbe221f2d4e60 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`.