diff options
author | Victor Stinner <vstinner@python.org> | 2020-11-12 15:38:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-12 15:38:13 +0100 |
commit | b5cc05bbe681dbe06d5ec6d34318815d1c1ad6c5 (patch) | |
tree | 60ff911a1dd1ebcbf8a06488e1f76123b1145e6c /Misc/NEWS.d/next/Build | |
parent | bpo-42260: Initialize time and warnings earlier at startup (GH-23249) (diff) | |
download | cpython-b5cc05bbe681dbe06d5ec6d34318815d1c1ad6c5.tar.gz cpython-b5cc05bbe681dbe06d5ec6d34318815d1c1ad6c5.tar.bz2 cpython-b5cc05bbe681dbe06d5ec6d34318815d1c1ad6c5.zip |
bpo-38823: Always build _ctypes with wchar_t (GH-23248)
It is no longer possible to build the _ctypes extension module
without wchar_t type: remove CTYPES_UNICODE macro. Anyway, the
wchar_t type is required to build Python.
Diffstat (limited to 'Misc/NEWS.d/next/Build')
-rw-r--r-- | Misc/NEWS.d/next/Build/2020-11-12-13-45-15.bpo-38823.C0z_Fe.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2020-11-12-13-45-15.bpo-38823.C0z_Fe.rst b/Misc/NEWS.d/next/Build/2020-11-12-13-45-15.bpo-38823.C0z_Fe.rst new file mode 100644 index 00000000000..4a0f11de5e4 --- /dev/null +++ b/Misc/NEWS.d/next/Build/2020-11-12-13-45-15.bpo-38823.C0z_Fe.rst @@ -0,0 +1,3 @@ +It is no longer possible to build the ``_ctypes`` extension module without +:c:type:`wchar_t` type: remove ``CTYPES_UNICODE`` macro. Anyway, the +:c:type:`wchar_t` type is required to build Python. Patch by Victor Stinner. |