aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
authorChris Eibl <138194463+chris-eibl@users.noreply.github.com>2025-03-20 17:29:21 +0100
committerGitHub <noreply@github.com>2025-03-20 16:29:21 +0000
commita2ea4175786e684dd0c1751d49f869e2e4a80e30 (patch)
treee43e4f6223a56fede8ba34ecd44cec8f98c295be /Python/sysmodule.c
parent749e24b48fb6b267f1ad580a6363edbcbbfa3e16 (diff)
downloadcpython-a2ea4175786e684dd0c1751d49f869e2e4a80e30.tar.gz
cpython-a2ea4175786e684dd0c1751d49f869e2e4a80e30.zip
GH-131296: fix clang-cl warnings in sysmodule.c (#131304)
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r--Python/sysmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index 664bf31e9ec..1b2019a9f74 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -1614,7 +1614,7 @@ sys_getrecursionlimit_impl(PyObject *module)
#ifdef MS_WINDOWS
-static PyTypeObject WindowsVersionType = {0, 0, 0, 0, 0, 0};
+static PyTypeObject WindowsVersionType = { 0 };
static PyStructSequence_Field windows_version_fields[] = {
{"major", "Major version number"},