summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na@python.org>2021-03-22 10:01:14 (GMT)
committerGitHub <noreply@github.com>2021-03-22 10:01:14 (GMT)
commit86883d40e93acae980e52b90fddd7d042e439beb (patch)
treee5d189e9561d5c16f65d1f0c5bbe78fe646cfee7 /Misc
parent88d9983b561cd59e5f186d98227de0c1a022b498 (diff)
downloadcpython-86883d40e93acae980e52b90fddd7d042e439beb.zip
cpython-86883d40e93acae980e52b90fddd7d042e439beb.tar.gz
cpython-86883d40e93acae980e52b90fddd7d042e439beb.tar.bz2
bpo-43575: Use PEP 590 vectorcall to speed up map() (GH-24955)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-03-21-12-26-32.bpo-43575.pl-nSg.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-03-21-12-26-32.bpo-43575.pl-nSg.rst b/Misc/NEWS.d/next/Core and Builtins/2021-03-21-12-26-32.bpo-43575.pl-nSg.rst
new file mode 100644
index 0000000..1023258
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2021-03-21-12-26-32.bpo-43575.pl-nSg.rst
@@ -0,0 +1,2 @@
+Speed up calls to ``map()`` by using the :pep:`590` ``vectorcall`` calling
+convention. Patch by Dong-hee Na.