summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2024-09-19 20:32:01 (GMT)
committerGitHub <noreply@github.com>2024-09-19 20:32:01 (GMT)
commit7a2d77c903f29d7ea08b870b8e3fa2130f667a59 (patch)
treefecf94a581f31a594a86c6760261dc0b04131f30 /Lib
parent5f011115943933ff36adf997c886d73ea88003fb (diff)
downloadcpython-7a2d77c903f29d7ea08b870b8e3fa2130f667a59.zip
cpython-7a2d77c903f29d7ea08b870b8e3fa2130f667a59.tar.gz
cpython-7a2d77c903f29d7ea08b870b8e3fa2130f667a59.tar.bz2
test_cext, test_cppext: enable /W4 warnings on Windows (#124253)
Add an explicit cast to (void*) and add Py_UNUSED() to fix some warnings in extension.c.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_cext/extension.c10
-rw-r--r--Lib/test/test_cext/setup.py2
-rw-r--r--Lib/test/test_cppext/setup.py2
3 files changed, 12 insertions, 2 deletions
diff --git a/Lib/test/test_cext/extension.c b/Lib/test/test_cext/extension.c
index eb23dbe..b76abe1 100644
--- a/Lib/test/test_cext/extension.c
+++ b/Lib/test/test_cext/extension.c
@@ -37,7 +37,13 @@ static PyMethodDef _testcext_methods[] = {
static int
-_testcext_exec(PyObject *module)
+_testcext_exec(
+#ifdef __STDC_VERSION__
+ PyObject *module
+#else
+ PyObject *Py_UNUSED(module)
+#endif
+ )
{
#ifdef __STDC_VERSION__
if (PyModule_AddIntMacro(module, __STDC_VERSION__) < 0) {
@@ -53,7 +59,7 @@ _testcext_exec(PyObject *module)
}
static PyModuleDef_Slot _testcext_slots[] = {
- {Py_mod_exec, _testcext_exec},
+ {Py_mod_exec, (void*)_testcext_exec},
{0, NULL}
};
diff --git a/Lib/test/test_cext/setup.py b/Lib/test/test_cext/setup.py
index 19edc5e..e97749b 100644
--- a/Lib/test/test_cext/setup.py
+++ b/Lib/test/test_cext/setup.py
@@ -31,6 +31,8 @@ if not support.MS_WINDOWS:
else:
# MSVC compiler flags
CFLAGS = [
+ # Display warnings level 1 to 4
+ '/W4',
# Treat all compiler warnings as compiler errors
'/WX',
]
diff --git a/Lib/test/test_cppext/setup.py b/Lib/test/test_cppext/setup.py
index f1848f2..d97b238 100644
--- a/Lib/test/test_cppext/setup.py
+++ b/Lib/test/test_cppext/setup.py
@@ -22,6 +22,8 @@ if not support.MS_WINDOWS:
else:
# MSVC compiler flags
CPPFLAGS = [
+ # Display warnings level 1 to 4
+ '/W4',
# Treat all compiler warnings as compiler errors
'/WX',
]