Skip to content

Commit bb7e393

Browse files
Apply suggestion from @serhiy-storchaka
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
1 parent 91ace76 commit bb7e393

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/longobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6966,7 +6966,7 @@ PyLongWriter_Finish(PyLongWriter *writer)
69666966
// Check ob_digit[0] digit for the number zero
69676967
ndigits = 1;
69686968
}
6969-
for (Py_ssize_t i=0; i < ndigits; i++) {
6969+
for (Py_ssize_t i = 0; i < ndigits; i++) {
69706970
digit d = obj->long_value.ob_digit[i];
69716971
assert(d < PyLong_BASE);
69726972
}

0 commit comments

Comments
 (0)