summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2020-09-28 16:16:21 (GMT)
committerGitHub <noreply@github.com>2020-09-28 16:16:21 (GMT)
commita195bceff7b552c5f86dec7894ff24dcc87235da (patch)
tree9e8249575079f7f1041a939d5d4c66924877157e /Misc
parentd9ab95ff1fe81efdf70e545d536d9f6927d1ba81 (diff)
downloadcpython-a195bceff7b552c5f86dec7894ff24dcc87235da.zip
cpython-a195bceff7b552c5f86dec7894ff24dcc87235da.tar.gz
cpython-a195bceff7b552c5f86dec7894ff24dcc87235da.tar.bz2
bpo-41870: Use PEP 590 vectorcall to speed up bool() (GH-22427)
* bpo-41870: Use PEP 590 vectorcall to speed up bool() * bpo-41870: Add NEWS.d
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-09-27-22-23-14.bpo-41870.2v6_v4.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-09-27-22-23-14.bpo-41870.2v6_v4.rst b/Misc/NEWS.d/next/Core and Builtins/2020-09-27-22-23-14.bpo-41870.2v6_v4.rst
new file mode 100644
index 0000000..13a6bb0
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-09-27-22-23-14.bpo-41870.2v6_v4.rst
@@ -0,0 +1,2 @@
+Speed up calls to ``bool()`` by using the :pep:`590` ``vectorcall`` calling
+convention. Patch by Dong-hee Na.