https://github.com/python/cpython/commit/a2ea4175786e684dd0c1751d49f869e2e4a80e30
commit: a2ea4175786e684dd0c1751d49f869e2e4a80e30
branch: main
author: Chris Eibl <138194463+chris-e...@users.noreply.github.com>
committer: vstinner <vstin...@python.org>
date: 2025-03-20T16:29:21Z
summary:

GH-131296: fix clang-cl warnings in sysmodule.c (#131304)

files:
M Python/sysmodule.c

diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index 664bf31e9ecd9b..1b2019a9f74d42 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"},

_______________________________________________
Python-checkins mailing list -- python-checkins@python.org
To unsubscribe send an email to python-checkins-le...@python.org
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: arch...@mail-archive.com

Reply via email to