summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-06-14 16:43:22 (GMT)
committerGitHub <noreply@github.com>2019-06-14 16:43:22 (GMT)
commitb0f6fa8d7d4c6d8263094124df9ef9cf816bbed6 (patch)
treef63bc97e394dbe4e8bde7febd91c32347781e24c /Misc
parent0c2eb6d21013d77e1160250d3cf69ca80215d064 (diff)
downloadcpython-b0f6fa8d7d4c6d8263094124df9ef9cf816bbed6.zip
cpython-b0f6fa8d7d4c6d8263094124df9ef9cf816bbed6.tar.gz
cpython-b0f6fa8d7d4c6d8263094124df9ef9cf816bbed6.tar.bz2
bpo-19865: ctypes.create_unicode_buffer() supports non-BMP strings on Windows (GH-14081)
(cherry picked from commit 9765efcb39fc03d5b1abec3924388974470a8bd5) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
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).