diff options
author | Dong-hee Na <donghee.na92@gmail.com> | 2020-03-18 17:30:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-18 17:30:50 (GMT) |
commit | 1c60567b9a4c8f77e730de9d22690d8e68d7e5f6 (patch) | |
tree | 2f9a85cf8399dbbc962da585d430f6f1516d8dcf /Misc | |
parent | d18de46117d661a4acaf2380cc5ebb1cf6a000e9 (diff) | |
download | cpython-1c60567b9a4c8f77e730de9d22690d8e68d7e5f6.zip cpython-1c60567b9a4c8f77e730de9d22690d8e68d7e5f6.tar.gz cpython-1c60567b9a4c8f77e730de9d22690d8e68d7e5f6.tar.bz2 |
bpo-37207: Use PEP 590 vectorcall to speed up frozenset() (GH-19053)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-03-17-22-35-29.bpo-37207.sBAV1j.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-03-17-22-35-29.bpo-37207.sBAV1j.rst b/Misc/NEWS.d/next/Core and Builtins/2020-03-17-22-35-29.bpo-37207.sBAV1j.rst new file mode 100644 index 0000000..6a148e3 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-03-17-22-35-29.bpo-37207.sBAV1j.rst @@ -0,0 +1,2 @@ +Speed up calls to ``frozenset()`` by using the :pep:`590` ``vectorcall`` +calling convention. Patch by Dong-hee Na. |