Skip to content

Commit af01d32

Browse files
committed
format code
1 parent a541f52 commit af01d32

File tree

4 files changed

+8
-16
lines changed

4 files changed

+8
-16
lines changed

Modules/_testinternalcapi/test_cases.c.h

Lines changed: 2 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python/bytecodes.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -874,15 +874,13 @@ dummy_func(
874874
PyTuple_CheckExact(container_o) ||
875875
PyUnicode_CheckExact(container_o)) &&
876876
(start_o == Py_None || PyLong_CheckExact(start_o)) &&
877-
(stop_o == Py_None || PyLong_CheckExact(stop_o)))
878-
{
877+
(stop_o == Py_None || PyLong_CheckExact(stop_o))) {
879878
Py_ssize_t len = PyUnicode_CheckExact(container_o)
880879
? PyUnicode_GET_LENGTH(container_o)
881880
: Py_SIZE(container_o);
882881
Py_ssize_t istart = 0, istop = PY_SSIZE_T_MAX;
883882
if (!_PyEval_SliceIndex(start_o, &istart) ||
884-
!_PyEval_SliceIndex(stop_o, &istop))
885-
{
883+
!_PyEval_SliceIndex(stop_o, &istop)) {
886884
res_o = NULL;
887885
}
888886
else {

Python/executor_cases.c.h

Lines changed: 2 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python/generated_cases.c.h

Lines changed: 2 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)