Skip to content

Commit 402787c

Browse files
committed
Rename result of PUSH_NULL
1 parent 0515341 commit 402787c

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
lines changed

Python/bytecodes.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -348,8 +348,8 @@ dummy_func(
348348
DECREF_INPUTS();
349349
}
350350

351-
pure inst(PUSH_NULL, (-- res)) {
352-
res = PyStackRef_NULL;
351+
pure inst(PUSH_NULL, (-- null)) {
352+
null = PyStackRef_NULL;
353353
}
354354

355355
no_save_ip inst(END_FOR, (value -- )) {

Python/ceval.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,6 @@ maybe_lltrace_resume_frame(_PyInterpreterFrame *frame, _PyInterpreterFrame *skip
249249
lltrace = *python_lltrace - '0'; // TODO: Parse an int and all that
250250
}
251251
}
252-
// lltrace = 5;
253252
if (lltrace >= 5) {
254253
lltrace_resume_frame(frame);
255254
}

Python/executor_cases.c.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/generated_cases.c.h

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

0 commit comments

Comments
 (0)