aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2025-03-20 12:03:20 +0100
committerGitHub <noreply@github.com>2025-03-20 12:03:20 +0100
commit486d5370653d86aba4348067bd61b973297c22c3 (patch)
tree5b25ac3ead6a2df6027697fc9783fceeeaba044c /Python/sysmodule.c
parent2433cc79d79d9c1db8e53d4b9bde26e9a47fb0b9 (diff)
downloadcpython-486d5370653d86aba4348067bd61b973297c22c3.tar.gz
cpython-486d5370653d86aba4348067bd61b973297c22c3.zip
Fix Windows build warnings (#131487)
Fix the following warnings: * Modules\_io\fileio.c(1296,13): unused variable 'self' * Modules\_io\winconsoleio.c(334,9): unused variable 'fd_is_own' * Modules\faulthandler.c(409,11): unused variable 'flags' * Modules\posixmodule.c(5699,9): unused variable 'pathError' * PC\winreg.c(2077,5): suggest braces around initialization of subobject * PC\winreg.c(34,13): unused variable 'errNotAHandle' * Python\fileutils.c(132,12): result of comparison of constant 1114111 with expression of type 'wchar_t' (aka 'unsigned short') is always false * Python\fileutils.c(58,21): unused variable 'INCOMPLETE_CHARACTER' * Python\sysmodule.c(2534,21): unused variable 'perf_map_state'
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r--Python/sysmodule.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index c06ae90ee2b..0fe9f894f05 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -2531,7 +2531,9 @@ sys__is_gil_enabled_impl(PyObject *module)
}
+#ifndef MS_WINDOWS
static PerfMapState perf_map_state;
+#endif
PyAPI_FUNC(int) PyUnstable_PerfMapState_Init(void) {
#ifndef MS_WINDOWS