https://github.com/python/cpython/commit/64846f14d87cc8ddd4947b83aa90f6e3b0b2151e
commit: 64846f14d87cc8ddd4947b83aa90f6e3b0b2151e
branch: 3.13
author: Miss Islington (bot) <[email protected]>
committer: vstinner <[email protected]>
date: 2024-11-14T10:32:09Z
summary:

[3.13] gh-126433: Change channel_info.count to int64_t (GH-126447) (#126826)

gh-126433: Change channel_info.count to int64_t (GH-126447)

Fix compiler warnings on 32-bit Windows: change channel_info.count
type from Py_ssize_t to int64_t in _interpchannelsmodule.c.
(cherry picked from commit 09d7083962062acfef7e7a9a309a01fb70ad8276)

Co-authored-by: Victor Stinner <[email protected]>

files:
M Modules/_interpchannelsmodule.c

diff --git a/Modules/_interpchannelsmodule.c b/Modules/_interpchannelsmodule.c
index 8e6b21db76e01c..4c1b4b5a76ce08 100644
--- a/Modules/_interpchannelsmodule.c
+++ b/Modules/_interpchannelsmodule.c
@@ -2047,7 +2047,7 @@ struct channel_info {
             int recv;
         } cur;
     } status;
-    Py_ssize_t count;
+    int64_t count;
 };
 
 static int

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to