diff options
author | Dong-hee Na <donghee.na92@gmail.com> | 2020-03-16 17:17:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-16 17:17:38 (GMT) |
commit | 6ff79f65820031b219622faea8425edaec9a43f3 (patch) | |
tree | 3df97acc315423cdd84ad48beafbdacbb692965b /Misc | |
parent | 5f104d56fa10f88098338b3f1ea74bcbe6924ca9 (diff) | |
download | cpython-6ff79f65820031b219622faea8425edaec9a43f3.zip cpython-6ff79f65820031b219622faea8425edaec9a43f3.tar.gz cpython-6ff79f65820031b219622faea8425edaec9a43f3.tar.bz2 |
bpo-37207: Use PEP 590 vectorcall to speed up set() constructor (GH-19019)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-03-15-23-16-00.bpo-37207.6XbnQA.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-03-15-23-16-00.bpo-37207.6XbnQA.rst b/Misc/NEWS.d/next/Core and Builtins/2020-03-15-23-16-00.bpo-37207.6XbnQA.rst new file mode 100644 index 0000000..28237cc --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-03-15-23-16-00.bpo-37207.6XbnQA.rst @@ -0,0 +1,2 @@ +Speed up calls to ``set()`` by using the :pep:`590` ``vectorcall`` calling +convention. Patch by Dong-hee Na. |