Skip to content

Commit 09d7083

Browse files
authored
gh-126433: Change channel_info.count to int64_t (#126447)
Fix compiler warnings on 32-bit Windows: change channel_info.count type from Py_ssize_t to int64_t in _interpchannelsmodule.c.
1 parent 6431f37 commit 09d7083

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_interpchannelsmodule.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2047,7 +2047,7 @@ struct channel_info {
20472047
int recv;
20482048
} cur;
20492049
} status;
2050-
Py_ssize_t count;
2050+
int64_t count;
20512051
};
20522052

20532053
static int

0 commit comments

Comments
 (0)