diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2020-10-20 05:22:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-20 05:22:44 (GMT) |
commit | 109826c8508dd02e06ae0f1784f1d202495a8680 (patch) | |
tree | 75b1dd3041d325b379cf50d2ebc5f6ce968fc151 /Misc | |
parent | 871934d4cf00687b3d1411c6e344af311646c1ae (diff) | |
download | cpython-109826c8508dd02e06ae0f1784f1d202495a8680.zip cpython-109826c8508dd02e06ae0f1784f1d202495a8680.tar.gz cpython-109826c8508dd02e06ae0f1784f1d202495a8680.tar.bz2 |
bpo-42093: Add opcode cache for LOAD_ATTR (GH-22803)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-10-20-04-24-07.bpo-42093.ooZZNh.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-10-20-04-24-07.bpo-42093.ooZZNh.rst b/Misc/NEWS.d/next/Core and Builtins/2020-10-20-04-24-07.bpo-42093.ooZZNh.rst new file mode 100644 index 0000000..36a12c1 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-10-20-04-24-07.bpo-42093.ooZZNh.rst @@ -0,0 +1,2 @@ +The ``LOAD_ATTR`` instruction now uses new "per opcode cache" mechanism and +it is about 36% faster now. Patch by Pablo Galindo and Yury Selivanov. |