We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4aad3c commit a6fd711Copy full SHA for a6fd711
1 file changed
Python/optimizer.c
@@ -653,13 +653,13 @@ translate_bytecode_to_trace(
653
max_length--;
654
}
655
if (OPCODE_HAS_ERROR(opcode)) {
656
- // Make space for error stub and final _EXIT_TRACE:
657
- RESERVE_RAW(2, "_ERROR_POP_N");
658
- max_length--;
+ // Make space for error stub and final _EXIT_TRACE:
+ RESERVE_RAW(2, "_ERROR_POP_N");
+ max_length--;
659
660
if (OPCODE_HAS_DEOPT(opcode)) {
661
- RESERVE_RAW(2, "_DEOPT");
662
+ RESERVE_RAW(2, "_DEOPT");
663
664
switch (opcode) {
665
case POP_JUMP_IF_NONE:
0 commit comments