Skip to content

Commit 05accc0

Browse files
Py_ssize_t -> int.
1 parent 5a4d984 commit 05accc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/typeobject.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -8879,7 +8879,7 @@ super_init_without_args(PyFrameObject *f, PyCodeObject *co,
88798879
}
88808880

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

0 commit comments

Comments
 (0)