From 43dc7f398fe88bb9f0e98069ecd658a39fc15409 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 9 Jul 2024 17:27:50 +0300 Subject: [PATCH] Remove opcode from another old PR, not needed in the current one --- ASTree.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/ASTree.cpp b/ASTree.cpp index 4bf318860..f85f7f785 100644 --- a/ASTree.cpp +++ b/ASTree.cpp @@ -1176,7 +1176,6 @@ PycRef BuildFromCode(PycRef code, PycModule* mod) } break; case Pyc::JUMP_ABSOLUTE_A: - case Pyc::JUMP_BACKWARD_A: //bpo-47120: Replaced JUMP_ABSOLUTE by the relative jump JUMP_BACKWARD. { int offs = operand; if (mod->verCompare(3, 10) >= 0)