This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Use FASTCALL calling convention in generator.throw
Type: performance Stage: resolved
Components: Interpreter Core Versions: Python 3.11
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Mark.Shannon, kumaraditya
Priority: normal Keywords:

Created on 2022-03-07 11:56 by kumaraditya, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 31723 merged kumaraditya, 2022-03-07 11:56
Messages (2)
msg414660 - (view) Author: Kumar Aditya (kumaraditya) * (Python triager) Date: 2022-03-07 11:56
Use FASTCALL calling convention in generator.throw to avoid creating a temporary tuple to pass arguments to the function.
msg414908 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2022-03-11 14:37
New changeset 304197b3820309e3ed695ff3e6a71461881a1728 by Kumar Aditya in branch 'main':
bpo-46944: use FASTCALL calling convention in generator.throw (GH-31723)
https://github.com/python/cpython/commit/304197b3820309e3ed695ff3e6a71461881a1728
History
Date User Action Args
2022-04-11 14:59:57adminsetgithub: 91100
2022-03-12 10:26:58kumaradityasetstatus: open -> closed
type: performance
resolution: fixed
stage: resolved
2022-03-11 14:37:26Mark.Shannonsetmessages: + msg414908
2022-03-07 11:56:36kumaradityacreate