Skip to content

Commit 0683272

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

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
@@ -414,7 +414,7 @@ II_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
414414
if (NULL == res) {
415415
return -1;
416416
}
417-
v=res;
417+
v = res;
418418
do_decref = 1;
419419
}
420420
x = PyLong_AsUnsignedLong(v);

0 commit comments

Comments
 (0)