GH-109190: Copyedit 3.12 What's New: bytecode (LOAD_METHOD) (#109665)

bytecode: suppress reference to removed LOAD_METHOD
This commit is contained in:
Adam Turner 2023-09-22 13:50:20 +01:00 committed by GitHub
parent 8fc071345b
commit d9415f6a45
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1000,9 +1000,9 @@ Optimizations
CPython bytecode changes
========================
* Remove the :opcode:`LOAD_METHOD` instruction. It has been merged into
* Remove the :opcode:`!LOAD_METHOD` instruction. It has been merged into
:opcode:`LOAD_ATTR`. :opcode:`LOAD_ATTR` will now behave like the old
:opcode:`LOAD_METHOD` instruction if the low bit of its oparg is set.
:opcode:`!LOAD_METHOD` instruction if the low bit of its oparg is set.
(Contributed by Ken Jin in :gh:`93429`.)
* Remove the :opcode:`!JUMP_IF_FALSE_OR_POP` and :opcode:`!JUMP_IF_TRUE_OR_POP`