Skip to content

Commit 24fd681

Browse files
committed
Address code review
1 parent 64fb493 commit 24fd681

File tree

4 files changed

+16
-13
lines changed

4 files changed

+16
-13
lines changed

Python/bytecodes.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -750,12 +750,12 @@ dummy_func(
750750

751751
STAT_INC(BINARY_OP, hit);
752752
PyObject *res_o = PyUnicode_Concat(left_o, right_o);
753-
l = left;
754-
r = right;
755-
INPUTS_DEAD();
756753
if (res_o == NULL) {
757754
ERROR_NO_POP();
758755
}
756+
l = left;
757+
r = right;
758+
INPUTS_DEAD();
759759
res = PyStackRef_FromPyObjectSteal(res_o);
760760
}
761761

Python/executor_cases.c.h

Lines changed: 9 additions & 6 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 & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python/optimizer_cases.c.h

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

0 commit comments

Comments
 (0)