summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>2022-03-11 14:37:14 (GMT)
committerGitHub <noreply@github.com>2022-03-11 14:37:14 (GMT)
commit304197b3820309e3ed695ff3e6a71461881a1728 (patch)
treefc9d4302b11cb5a58411d3195beeb4abbfd52735 /Misc
parent4f74ffc5e333a9ca931153f4844c8c785b1362a3 (diff)
downloadcpython-304197b3820309e3ed695ff3e6a71461881a1728.zip
cpython-304197b3820309e3ed695ff3e6a71461881a1728.tar.gz
cpython-304197b3820309e3ed695ff3e6a71461881a1728.tar.bz2
bpo-46944: use FASTCALL calling convention in generator.throw (GH-31723)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-03-08-10-50-42.bpo-46944.cnaIK3.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-03-08-10-50-42.bpo-46944.cnaIK3.rst b/Misc/NEWS.d/next/Core and Builtins/2022-03-08-10-50-42.bpo-46944.cnaIK3.rst
new file mode 100644
index 0000000..f940ebb
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-03-08-10-50-42.bpo-46944.cnaIK3.rst
@@ -0,0 +1 @@
+Speed up throwing exception in generator with :const:`METH_FASTCALL` calling convention. Patch by Kumar Aditya.