diff options
author | Dennis Sweeney <36520290+sweeneyde@users.noreply.github.com> | 2022-02-24 14:55:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-24 14:55:59 (GMT) |
commit | a52d2528a405c1e2bfeb6470cb3313a5338dc45f (patch) | |
tree | c7a8d9c23869de114ba3c5f09a7582e1185b30c4 /Misc/NEWS.d | |
parent | 4fccf910738d1442852cb900747e6dccb8fe03ef (diff) | |
download | cpython-a52d2528a405c1e2bfeb6470cb3313a5338dc45f.zip cpython-a52d2528a405c1e2bfeb6470cb3313a5338dc45f.tar.gz cpython-a52d2528a405c1e2bfeb6470cb3313a5338dc45f.tar.bz2 |
bpo-46823: Implement LOAD_FAST__LOAD_ATTR_INSTANCE_VALUE superinstruction (GH-31484)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2022-02-22-05-14-25.bpo-46823.z9NZC9.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-02-22-05-14-25.bpo-46823.z9NZC9.rst b/Misc/NEWS.d/next/Core and Builtins/2022-02-22-05-14-25.bpo-46823.z9NZC9.rst new file mode 100644 index 0000000..908f48d --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2022-02-22-05-14-25.bpo-46823.z9NZC9.rst @@ -0,0 +1 @@ +Implement a specialized combined opcode ``LOAD_FAST__LOAD_ATTR_INSTANCE_VALUE``. Patch by Dennis Sweeney. |