diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-06-30 08:49:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-30 08:49:09 (GMT) |
commit | 41d6e3fbb8bcfd41db37782523caac47e7c8ad23 (patch) | |
tree | 5def5220c3a4cf9aaa3a56295d61751b20c31fcc /Doc/c-api | |
parent | 00fd04b9b7537c473c3f9396a861868b8ddd3bb2 (diff) | |
download | cpython-41d6e3fbb8bcfd41db37782523caac47e7c8ad23.zip cpython-41d6e3fbb8bcfd41db37782523caac47e7c8ad23.tar.gz cpython-41d6e3fbb8bcfd41db37782523caac47e7c8ad23.tar.bz2 |
bpo-41123: Remove PyUnicode_AsUnicodeCopy in 3.10 (GH-21227)
(cherry picked from commit 2ea6a9928e4fa135888cc8f4733c28d93e642301)
Co-authored-by: Inada Naoki <songofacandy@gmail.com>
Diffstat (limited to 'Doc/c-api')
-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 2bf4a0f..b261efe 100644 --- a/Doc/c-api/unicode.rst +++ b/Doc/c-api/unicode.rst @@ -700,6 +700,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) |