summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-10-23 19:58:24 (GMT)
committerGitHub <noreply@github.com>2018-10-23 19:58:24 (GMT)
commitc46db9232f1a6e0e3c33053549d03d4335db9dca (patch)
tree72098815b2ebf289beedcfad8d7f2246c507b6bf /Misc/NEWS.d
parentdf13df41a25765d8a39a77220691698498e758d4 (diff)
downloadcpython-c46db9232f1a6e0e3c33053549d03d4335db9dca.zip
cpython-c46db9232f1a6e0e3c33053549d03d4335db9dca.tar.gz
cpython-c46db9232f1a6e0e3c33053549d03d4335db9dca.tar.bz2
bpo-30863: Rewrite PyUnicode_AsWideChar() and PyUnicode_AsWideCharString(). (GH-2599)
They no longer cache the wchar_t* representation of string objects.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/C API/2017-10-12-23-24-27.bpo-30863.xrED19.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2017-10-12-23-24-27.bpo-30863.xrED19.rst b/Misc/NEWS.d/next/C API/2017-10-12-23-24-27.bpo-30863.xrED19.rst
new file mode 100644
index 0000000..a8ef876
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2017-10-12-23-24-27.bpo-30863.xrED19.rst
@@ -0,0 +1,2 @@
+:c:func:`PyUnicode_AsWideChar` and :c:func:`PyUnicode_AsWideCharString` no
+longer cache the ``wchar_t*`` representation of string objects.