Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f8406ce

Browse files
committed
Undo unnecessary bracing changes
1 parent 4fecf7d commit f8406ce

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

Python/symtable.c

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -886,9 +886,8 @@ analyze_block(PySTEntryObject *ste, PyObject *bound, PyObject *free,
886886
/* Pass down previously bound symbols */
887887
if (bound) {
888888
temp = PyNumber_InPlaceOr(newbound, bound);
889-
if (!temp) {
889+
if (!temp)
890890
goto error;
891-
}
892891
Py_DECREF(temp);
893892
}
894893
}
@@ -905,17 +904,15 @@ analyze_block(PySTEntryObject *ste, PyObject *bound, PyObject *free,
905904
/* Add function locals to bound set */
906905
if (_PyST_IsFunctionLike(ste)) {
907906
temp = PyNumber_InPlaceOr(newbound, local);
908-
if (!temp) {
907+
if (!temp)
909908
goto error;
910-
}
911909
Py_DECREF(temp);
912910
}
913911
/* Pass down previously bound symbols */
914912
if (bound) {
915913
temp = PyNumber_InPlaceOr(newbound, bound);
916-
if (!temp) {
914+
if (!temp)
917915
goto error;
918-
}
919916
Py_DECREF(temp);
920917
}
921918
/* Pass down known globals */

0 commit comments

Comments
 (0)