summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2020-10-03 17:16:56 (GMT)
committerGitHub <noreply@github.com>2020-10-03 17:16:56 (GMT)
commitd646e91f5c4f4b76f96494103d440ed0b6257425 (patch)
treea95ff2dea63de61ff328c226684a1893040174fb /Misc/NEWS.d
parent3fe614893742faee3c64e6d974e11329a496424f (diff)
downloadcpython-d646e91f5c4f4b76f96494103d440ed0b6257425.zip
cpython-d646e91f5c4f4b76f96494103d440ed0b6257425.tar.gz
cpython-d646e91f5c4f4b76f96494103d440ed0b6257425.tar.bz2
bpo-41922: Use PEP 590 vectorcall to speed up reversed() (GH-22523)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-10-04-01-02-58.bpo-41922.kHGT8I.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-10-04-01-02-58.bpo-41922.kHGT8I.rst b/Misc/NEWS.d/next/Core and Builtins/2020-10-04-01-02-58.bpo-41922.kHGT8I.rst
new file mode 100644
index 0000000..3c4de2c
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-10-04-01-02-58.bpo-41922.kHGT8I.rst
@@ -0,0 +1,2 @@
+Speed up calls to ``reversed()`` by using the :pep:`590` ``vectorcall``
+calling convention. Patch by Dong-hee Na.