Skip to content

Commit 34bbad9

Browse files
committed
Address code review
1 parent 0f75899 commit 34bbad9

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
lines changed

Include/internal/pycore_uop_ids.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Include/internal/pycore_uop_metadata.h

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

Python/bytecodes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4295,7 +4295,6 @@ dummy_func(
42954295
op(_CALL_LEN, (callable, null, arg -- res, a, c)) {
42964296
/* len(o) */
42974297
STAT_INC(CALL, hit);
4298-
INPUTS_DEAD();
42994298
PyObject *arg_o = PyStackRef_AsPyObjectBorrow(arg);
43004299
Py_ssize_t len_i = PyObject_Length(arg_o);
43014300
if (len_i < 0) {
@@ -4306,6 +4305,7 @@ dummy_func(
43064305
if (res_o == NULL) {
43074306
ERROR_NO_POP();
43084307
}
4308+
INPUTS_DEAD();
43094309
res = PyStackRef_FromPyObjectSteal(res_o);
43104310
a = arg;
43114311
c = callable;

Python/executor_cases.c.h

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

0 commit comments

Comments
 (0)