diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-03-11 14:37:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-11 14:37:14 (GMT) |
commit | 304197b3820309e3ed695ff3e6a71461881a1728 (patch) | |
tree | fc9d4302b11cb5a58411d3195beeb4abbfd52735 /Misc | |
parent | 4f74ffc5e333a9ca931153f4844c8c785b1362a3 (diff) | |
download | cpython-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.rst | 1 |
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. |