summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2020-03-16 17:17:38 (GMT)
committerGitHub <noreply@github.com>2020-03-16 17:17:38 (GMT)
commit6ff79f65820031b219622faea8425edaec9a43f3 (patch)
tree3df97acc315423cdd84ad48beafbdacbb692965b /Misc
parent5f104d56fa10f88098338b3f1ea74bcbe6924ca9 (diff)
downloadcpython-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.rst2
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.