Skip to content

Commit e3be1e5

Browse files
Update Modules/arraymodule.c
Co-authored-by: Victor Stinner <vstinner@python.org>
1 parent 6210264 commit e3be1e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/arraymodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ QQ_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
533533
if (NULL == res) {
534534
return -1;
535535
}
536-
v=res;
536+
v = res;
537537
do_decref = 1;
538538
}
539539
x = PyLong_AsUnsignedLongLong(v);

0 commit comments

Comments
 (0)