summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/C API/2021-10-11-22-58-33.bpo-41123.myrlIp.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS.d/next/C API/2021-10-11-22-58-33.bpo-41123.myrlIp.rst')
-rw-r--r--Misc/NEWS.d/next/C API/2021-10-11-22-58-33.bpo-41123.myrlIp.rst4
1 files changed, 0 insertions, 4 deletions
diff --git a/Misc/NEWS.d/next/C API/2021-10-11-22-58-33.bpo-41123.myrlIp.rst b/Misc/NEWS.d/next/C API/2021-10-11-22-58-33.bpo-41123.myrlIp.rst
deleted file mode 100644
index 3ae302b..0000000
--- a/Misc/NEWS.d/next/C API/2021-10-11-22-58-33.bpo-41123.myrlIp.rst
+++ /dev/null
@@ -1,4 +0,0 @@
-Remove ``Py_UNICODE_COPY()`` and ``Py_UNICODE_FILL()`` macros, deprecated
-since Python 3.3. Use ``PyUnicode_CopyCharacters()`` or ``memcpy()``
-(``wchar_t*`` string), and ``PyUnicode_Fill()`` functions instead. Patch by
-Victor Stinner.