summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2020-04-02 00:55:43 (GMT)
committerGitHub <noreply@github.com>2020-04-02 00:55:43 (GMT)
commite27916b1fc0364e3627438df48550c16f0b80b82 (patch)
tree17f3242f1e2f1e273b179b15f59e3e801a27ede3 /Misc
parent224e1c34d677ef42fe665ac008a000d4dcec1398 (diff)
downloadcpython-e27916b1fc0364e3627438df48550c16f0b80b82.zip
cpython-e27916b1fc0364e3627438df48550c16f0b80b82.tar.gz
cpython-e27916b1fc0364e3627438df48550c16f0b80b82.tar.bz2
bpo-37207: Use PEP 590 vectorcall to speed up dict() (GH-19280)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-04-02-00-25-19.bpo-37207.ZTPmKJ.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-04-02-00-25-19.bpo-37207.ZTPmKJ.rst b/Misc/NEWS.d/next/Core and Builtins/2020-04-02-00-25-19.bpo-37207.ZTPmKJ.rst
new file mode 100644
index 0000000..cb5e9ff
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-04-02-00-25-19.bpo-37207.ZTPmKJ.rst
@@ -0,0 +1,2 @@
+Speed up calls to ``dict()`` by using the :pep:`590` ``vectorcall`` calling
+convention.