diff options
author | Brandt Bucher <brandt@python.org> | 2022-01-04 19:38:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-04 19:38:32 (GMT) |
commit | 31e43cbe5f01cdd5b5ab330ec3040920e8b61a91 (patch) | |
tree | d1fe86279c419ff34eae29c77a538b1d053f47cc /Doc/whatsnew | |
parent | f404e26d749c85eef7b5be836375260855050ee3 (diff) | |
download | cpython-31e43cbe5f01cdd5b5ab330ec3040920e8b61a91.zip cpython-31e43cbe5f01cdd5b5ab330ec3040920e8b61a91.tar.gz cpython-31e43cbe5f01cdd5b5ab330ec3040920e8b61a91.tar.bz2 |
bpo-46009: Remove GEN_START (GH-30367)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.11.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index be6cb15..6794e82 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -388,7 +388,7 @@ CPython bytecode changes This decouples the argument shifting for methods from the handling of keyword arguments and allows better specialization of calls. -* Removed ``COPY_DICT_WITHOUT_KEYS``. +* Removed ``COPY_DICT_WITHOUT_KEYS`` and ``GEN_START``. * :opcode:`MATCH_CLASS` and :opcode:`MATCH_KEYS` no longer push an additional boolean value indicating whether the match succeeded or failed. Instead, they |