[Python-checkins] bpo-41123: Doc: PyLong_FromUnicode will be removed in 3.10 (GH-21205)

Miss Islington (bot) webhook-mailer at python.org
Mon Jun 29 01:36:12 EDT 2020


https://github.com/python/cpython/commit/ea164309dea4e7f92aeda6daa9e9679290c68827
commit: ea164309dea4e7f92aeda6daa9e9679290c68827
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-06-28T22:36:04-07:00
summary:

bpo-41123: Doc: PyLong_FromUnicode will be removed in 3.10 (GH-21205)

(cherry picked from commit 02134dae448c7885c9c07adfc6970f878db33372)

Co-authored-by: Inada Naoki <songofacandy at gmail.com>

files:
M Doc/c-api/long.rst

diff --git a/Doc/c-api/long.rst b/Doc/c-api/long.rst
index f41d419bd3775..a8a91e2678413 100644
--- a/Doc/c-api/long.rst
+++ b/Doc/c-api/long.rst
@@ -102,7 +102,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`.
 



More information about the Python-checkins mailing list