Skip to content

Commit 6210264

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

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
@@ -477,7 +477,7 @@ LL_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
477477
if (NULL == res) {
478478
return -1;
479479
}
480-
v=res;
480+
v = res;
481481
do_decref = 1;
482482
}
483483
x = PyLong_AsUnsignedLong(v);

0 commit comments

Comments
 (0)