summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2019-06-14 15:53:59 (GMT)
committerVictor Stinner <vstinner@redhat.com>2019-06-14 15:53:59 (GMT)
commit9765efcb39fc03d5b1abec3924388974470a8bd5 (patch)
tree873077414cc3ee494da080ef44f890601d5dd7a1 /Misc
parent21a92f8cda525d25a165b773fbe1bfffd303a000 (diff)
downloadcpython-9765efcb39fc03d5b1abec3924388974470a8bd5.zip
cpython-9765efcb39fc03d5b1abec3924388974470a8bd5.tar.gz
cpython-9765efcb39fc03d5b1abec3924388974470a8bd5.tar.bz2
bpo-19865: ctypes.create_unicode_buffer() supports non-BMP strings on Windows (GH-14081)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-06-14-08-30-16.bpo-19865.FRGH4I.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-06-14-08-30-16.bpo-19865.FRGH4I.rst b/Misc/NEWS.d/next/Library/2019-06-14-08-30-16.bpo-19865.FRGH4I.rst
new file mode 100644
index 0000000..efd1f55
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-06-14-08-30-16.bpo-19865.FRGH4I.rst
@@ -0,0 +1,2 @@
+:func:`ctypes.create_unicode_buffer()` now also supports non-BMP characters
+on platforms with 16-bit :c:type:`wchar_t` (for example, Windows and AIX).