mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Issue #9566: use Py_ssize_t instead of int
This commit is contained in:
parent
6ab8e8298e
commit
0fcab4a3ed
14 changed files with 32 additions and 33 deletions
|
@ -1381,7 +1381,7 @@ typedef struct s_MergeState {
|
|||
|
||||
/* Conceptually a MergeState's constructor. */
|
||||
static void
|
||||
merge_init(MergeState *ms, int list_size, int has_keyfunc)
|
||||
merge_init(MergeState *ms, Py_ssize_t list_size, int has_keyfunc)
|
||||
{
|
||||
assert(ms != NULL);
|
||||
if (has_keyfunc) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue