Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Address code review
  • Loading branch information
corona10 committed Dec 11, 2025
commit 34bbad93d91aad29ed293e76ba6debf0c3ed7868
2 changes: 1 addition & 1 deletion Include/internal/pycore_uop_ids.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Include/internal/pycore_uop_metadata.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Python/bytecodes.c
Original file line number Diff line number Diff line change
Expand Up @@ -4295,7 +4295,6 @@ dummy_func(
op(_CALL_LEN, (callable, null, arg -- res, a, c)) {
/* len(o) */
STAT_INC(CALL, hit);
INPUTS_DEAD();
PyObject *arg_o = PyStackRef_AsPyObjectBorrow(arg);
Py_ssize_t len_i = PyObject_Length(arg_o);
if (len_i < 0) {
Expand All @@ -4306,6 +4305,7 @@ dummy_func(
if (res_o == NULL) {
ERROR_NO_POP();
}
INPUTS_DEAD();
res = PyStackRef_FromPyObjectSteal(res_o);
a = arg;
c = callable;
Expand Down
7 changes: 7 additions & 0 deletions Python/executor_cases.c.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 3 additions & 5 deletions Python/generated_cases.c.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading