Skip to content

Commit 2ee12ab

Browse files
committed
Fix ADDOP_JUMP
1 parent ed93ca1 commit 2ee12ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/codegen.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5915,7 +5915,7 @@ codegen_pattern_class_fast(compiler *c, pattern_ty p, pattern_context *pc)
59155915
pc->on_top++;
59165916
RETURN_IF_ERROR(jump_to_fail_pop(c, LOC(p), pc, POP_JUMP_IF_FALSE));
59175917
if (!nattrs) {
5918-
ADDOP_JUMP(c, NO_LOCATION, JUMP_FORWARD, end);
5918+
ADDOP_JUMP(c, NO_LOCATION, JUMP, end);
59195919
}
59205920

59215921
Py_ssize_t i;

0 commit comments

Comments
 (0)