Skip to content

Commit 33060fe

Browse files
taleinatpablogsal
authored andcommitted
add a few missing spaces
1 parent 7a1ed88 commit 33060fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/mathmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1672,9 +1672,9 @@ math_factorial(PyObject *module, PyObject *arg)
16721672
x = PyLong_AsLongAndOverflow(lx, &overflow);
16731673
Py_DECREF(lx);
16741674
}
1675-
else{
1675+
else {
16761676
pyint_form = PyNumber_Index(arg);
1677-
if(pyint_form == NULL){
1677+
if (pyint_form == NULL) {
16781678
return NULL;
16791679
}
16801680
x = PyLong_AsLongAndOverflow(pyint_form, &overflow);

0 commit comments

Comments
 (0)