From: Sergey Miryanov Date: Mon, 27 Jan 2025 14:36:09 +0000 (-0800) Subject: gh-119786: Fix small typo in AST to CFG to bytecode section in compiler.md (#129322) X-Git-Tag: v3.14.0a5~215 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a5075cd5bd0307d9c19a0e0d6fcf4b7ad3d5a915;p=thirdparty%2FPython%2Fcpython.git gh-119786: Fix small typo in AST to CFG to bytecode section in compiler.md (#129322) --- diff --git a/InternalDocs/compiler.md b/InternalDocs/compiler.md index c257bfd9faf7..8ca19a42b91b 100644 --- a/InternalDocs/compiler.md +++ b/InternalDocs/compiler.md @@ -401,7 +401,7 @@ Emission of bytecode is handled by the following macros: add the `LOAD_CONST` opcode with the proper argument based on the position of the specified PyObject in the consts table. * `ADDOP_LOAD_CONST_NEW(struct compiler *, location, PyObject *)`: - just like `ADDOP_LOAD_CONST_NEW`, but steals a reference to PyObject + just like `ADDOP_LOAD_CONST`, but steals a reference to PyObject * `ADDOP_JUMP(struct compiler *, location, int, basicblock *)`: create a jump to a basic block