diff options
author | Inada Naoki <songofacandy@gmail.com> | 2020-06-29 05:26:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-29 05:26:27 (GMT) |
commit | 02134dae448c7885c9c07adfc6970f878db33372 (patch) | |
tree | 9933548bd323f62d0005905030a979cf4fbb5ba7 | |
parent | 119de0eba839993cf6a909dba5d60202ad5566d6 (diff) | |
download | cpython-02134dae448c7885c9c07adfc6970f878db33372.zip cpython-02134dae448c7885c9c07adfc6970f878db33372.tar.gz cpython-02134dae448c7885c9c07adfc6970f878db33372.tar.bz2 |
bpo-41123: Doc: PyLong_FromUnicode will be removed in 3.10 (GH-21205)
-rw-r--r-- | Doc/c-api/long.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/long.rst b/Doc/c-api/long.rst index c5c2aa6..8ecbe22 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`. |