diff options
author | Dong-hee Na <donghee.na@python.org> | 2021-03-22 10:01:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-22 10:01:14 (GMT) |
commit | 86883d40e93acae980e52b90fddd7d042e439beb (patch) | |
tree | e5d189e9561d5c16f65d1f0c5bbe78fe646cfee7 /Misc | |
parent | 88d9983b561cd59e5f186d98227de0c1a022b498 (diff) | |
download | cpython-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.rst | 2 |
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. |