summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-05-31 13:46:26 (GMT)
committerGitHub <noreply@github.com>2023-05-31 13:46:26 (GMT)
commitd3c21a9f3327d8bed58b47e6e5ada7c95b0a7bde (patch)
tree8d4149ec396482a677ac3bf11a4d191585dc7a07 /Doc/whatsnew
parent01b42f9559b614d729c3f055d09269db13d2433c (diff)
downloadcpython-d3c21a9f3327d8bed58b47e6e5ada7c95b0a7bde.zip
cpython-d3c21a9f3327d8bed58b47e6e5ada7c95b0a7bde.tar.gz
cpython-d3c21a9f3327d8bed58b47e6e5ada7c95b0a7bde.tar.bz2
[3.12] gh-97933: add LOAD_FAST_AND_CLEAR to 3.12 What's New bytecode section (GH-105126) (#105142)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.12.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst
index ef9e401..c54c5d3 100644
--- a/Doc/whatsnew/3.12.rst
+++ b/Doc/whatsnew/3.12.rst
@@ -911,6 +911,9 @@ CPython bytecode changes
* Remove the :opcode:`!JUMP_IF_FALSE_OR_POP` and :opcode:`!JUMP_IF_TRUE_OR_POP`
instructions. (Contributed by Irit Katriel in :gh:`102859`.)
+* Add the :opcode:`LOAD_FAST_AND_CLEAR` instruction as part of the
+ implementation of :pep:`709`. (Contributed by Carl Meyer in :gh:`101441`.)
+
* Add the :opcode:`LOAD_FROM_DICT_OR_DEREF`, :opcode:`LOAD_FROM_DICT_OR_GLOBALS`,
and :opcode:`LOAD_LOCALS` opcodes as part of the implementation of :pep:`695`.
Remove the :opcode:`!LOAD_CLASSDEREF` opcode, which can be replaced with