From: Nybblista <170842536+nybblista@users.noreply.github.com> Date: Sun, 16 Mar 2025 20:04:39 +0000 (+0300) Subject: gh-119786: add `JUMP_BACKWARD` macro to the Jumps section (#131213) X-Git-Tag: v3.14.0a7~363 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=23cda583480fbc90cf19666a7514419ecad45b85;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/InternalDocs/interpreter.md b/InternalDocs/interpreter.md index 7195d9c6de57..38e9f6fced60 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