diff options
author | Inada Naoki <songofacandy@gmail.com> | 2020-06-30 06:24:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-30 06:24:06 (GMT) |
commit | 2ea6a9928e4fa135888cc8f4733c28d93e642301 (patch) | |
tree | 4bd478cb1b7ef152f0eaf4439607f44fcd181c61 | |
parent | 01638ce51a63afe5af3f778e7403702703bb41b9 (diff) | |
download | cpython-2ea6a9928e4fa135888cc8f4733c28d93e642301.zip cpython-2ea6a9928e4fa135888cc8f4733c28d93e642301.tar.gz cpython-2ea6a9928e4fa135888cc8f4733c28d93e642301.tar.bz2 |
bpo-41123: Remove PyUnicode_AsUnicodeCopy in 3.10 (GH-21227)
-rw-r--r-- | Doc/c-api/unicode.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/c-api/unicode.rst b/Doc/c-api/unicode.rst index b1787ed..0515183 100644 --- a/Doc/c-api/unicode.rst +++ b/Doc/c-api/unicode.rst @@ -705,6 +705,8 @@ Extension modules can continue using them, as they will not be removed in Python :c:func:`PyUnicode_AsWideChar`, :c:func:`PyUnicode_ReadChar` or similar new APIs. + .. deprecated-removed:: 3.3 3.10 + .. c:function:: PyObject* PyUnicode_TransformDecimalToASCII(Py_UNICODE *s, Py_ssize_t size) |