diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2020-07-05 15:53:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-05 15:53:45 (GMT) |
commit | b3dd5cd4a36877c473417fd7b3358843dcf8e647 (patch) | |
tree | 92dc0f758aaadbef1b6f1dda0ab639229ef887cb /Misc | |
parent | 7fed75597fac11f9a6c769e2b6c6548fe0e4049d (diff) | |
download | cpython-b3dd5cd4a36877c473417fd7b3358843dcf8e647.zip cpython-b3dd5cd4a36877c473417fd7b3358843dcf8e647.tar.gz cpython-b3dd5cd4a36877c473417fd7b3358843dcf8e647.tar.bz2 |
bpo-36346: Undeprecate private function _PyUnicode_AsUnicode(). (GH-21336)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/C API/2020-06-17-11-24-00.bpo-36346.fTMr3S.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS.d/next/C API/2020-06-17-11-24-00.bpo-36346.fTMr3S.rst b/Misc/NEWS.d/next/C API/2020-06-17-11-24-00.bpo-36346.fTMr3S.rst index 902a0e6..1e44830 100644 --- a/Misc/NEWS.d/next/C API/2020-06-17-11-24-00.bpo-36346.fTMr3S.rst +++ b/Misc/NEWS.d/next/C API/2020-06-17-11-24-00.bpo-36346.fTMr3S.rst @@ -1,4 +1,4 @@ Mark ``Py_UNICODE_COPY``, ``Py_UNICODE_FILL``, ``PyUnicode_WSTR_LENGTH``, -``PyUnicode_FromUnicode``, ``PyUnicode_AsUnicode``, ``_PyUnicode_AsUnicode``, +``PyUnicode_FromUnicode``, ``PyUnicode_AsUnicode``, and ``PyUnicode_AsUnicodeAndSize`` as deprecated in C. Remove ``Py_UNICODE_MATCH`` which was deprecated and broken since Python 3.3. |