]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-43030: Fixed a compiler warning in Py_UNICODE_ISSPACE with signed wchar_t (GH...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 31 Jan 2021 14:46:17 +0000 (06:46 -0800)
committerGitHub <noreply@github.com>
Sun, 31 Jan 2021 14:46:17 +0000 (16:46 +0200)
(cherry picked from commit 42b1806af90b86ec393ca7da14e99ce95ec6c53b)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Include/cpython/unicodeobject.h
Misc/NEWS.d/next/C API/2021-01-27-10-27-47.bpo-43030.loDcD_.rst [new file with mode: 0644]

index 54a13e32ba22b55e64f9048ac3528037b35bf753..87ff31ddbc101c6de25ce37f169981b27e1cedb4 100644 (file)
@@ -22,7 +22,7 @@ extern "C" {
 
  */
 #define Py_UNICODE_ISSPACE(ch) \
-    ((ch) < 128U ? _Py_ascii_whitespace[(ch)] : _PyUnicode_IsWhitespace(ch))
+    ((Py_UCS4)(ch) < 128U ? _Py_ascii_whitespace[(ch)] : _PyUnicode_IsWhitespace(ch))
 
 #define Py_UNICODE_ISLOWER(ch) _PyUnicode_IsLowercase(ch)
 #define Py_UNICODE_ISUPPER(ch) _PyUnicode_IsUppercase(ch)
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 (file)
index 0000000..7a43252
--- /dev/null
@@ -0,0 +1,2 @@
+Fixed a compiler warning in :c:func:`Py_UNICODE_ISSPACE()` on platforms with
+signed ``wchar_t``.