summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2021-01-31 13:55:13 (GMT)
committerGitHub <noreply@github.com>2021-01-31 13:55:13 (GMT)
commit42b1806af90b86ec393ca7da14e99ce95ec6c53b (patch)
tree8207a42275dde575bd529a07304ccda2370de2d4 /Misc
parent89294e30fffe6b86c44247cbde39cc965d01d555 (diff)
downloadcpython-42b1806af90b86ec393ca7da14e99ce95ec6c53b.zip
cpython-42b1806af90b86ec393ca7da14e99ce95ec6c53b.tar.gz
cpython-42b1806af90b86ec393ca7da14e99ce95ec6c53b.tar.bz2
bpo-43030: Fixed a compiler warning in Py_UNICODE_ISSPACE with signed wchar_t (GH-24350)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/C API/2021-01-27-10-27-47.bpo-43030.loDcD_.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2021-01-27-10-27-47.bpo-43030.loDcD_.rst b/Misc/NEWS.d/next/C API/2021-01-27-10-27-47.bpo-43030.loDcD_.rst
new file mode 100644
index 0000000..7a43252
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2021-01-27-10-27-47.bpo-43030.loDcD_.rst
@@ -0,0 +1,2 @@
+Fixed a compiler warning in :c:func:`Py_UNICODE_ISSPACE()` on platforms with
+signed ``wchar_t``.