From 23cda583480fbc90cf19666a7514419ecad45b85 Mon Sep 17 00:00:00 2001 From: Nybblista <170842536+nybblista@users.noreply.github.com> Date: Sun, 16 Mar 2025 23:04:39 +0300 Subject: [PATCH] gh-119786: add `JUMP_BACKWARD` macro to the Jumps section (#131213) add JUMP_BACKWARD opcode macro to the Jumps section JUMP_BACKWARD opcode macro added to the Jumps section in interpreter.md file at InternalDocs. --- InternalDocs/interpreter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InternalDocs/interpreter.md b/InternalDocs/interpreter.md index 7195d9c6de5..38e9f6fced6 100644 --- a/InternalDocs/interpreter.md +++ b/InternalDocs/interpreter.md @@ -112,7 +112,7 @@ already points to the next instruction. Thus, jump instructions can be implemented by manipulating `next_instr`: - A jump forward (`JUMP_FORWARD`) sets `next_instr += oparg`. -- A jump backward sets `next_instr -= oparg`. +- A jump backward (`JUMP_BACKWARD`) sets `next_instr -= oparg`. ## Inline cache entries