Skip to content

Commit

Permalink
Py_ssize_t -> int.
Browse files Browse the repository at this point in the history
  • Loading branch information
ericsnowcurrently committed Jun 7, 2021
1 parent 5a4d984 commit 05accc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Objects/typeobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -8879,7 +8879,7 @@ super_init_without_args(PyFrameObject *f, PyCodeObject *co,
}

PyObject *obj = f->f_localsptr[0];
Py_ssize_t i;
int i;
if (obj == NULL && co->co_cell2arg) {
/* The first argument might be a cell. */
for (i = 0; i < co->co_ncellvars; i++) {
Expand Down

0 comments on commit 05accc0

Please sign in to comment.