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: Specialize call for c functions with METH_FASTCALL|METH_KEYWORDS
Type: performance Stage: resolved
Components: Interpreter Core Versions: Python 3.11
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Dennis Sweeney, Mark.Shannon, kj, kumaraditya
Priority: normal Keywords:

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

Pull Requests
URL Status Linked Edit
PR 32125 merged kumaraditya, 2022-03-26 12:16
Messages (2)
msg416058 - (view) Author: Kumar Aditya (kumaraditya) * (Python triager) Date: 2022-03-26 12:16
Specialize call for c functions with METH_FASTCALL|METH_KEYWORDS flags.

It is the second largest PRECALL specialization failure as per the stats.

See https://github.com/faster-cpython/ideas/blob/main/stats.md#specialization-attempts-10
msg416134 - (view) Author: Ken Jin (kj) * (Python committer) Date: 2022-03-27 19:53
New changeset 58448cbd96f77ebc6fca1f8030bedc7744eb66ef by Kumar Aditya in branch 'main':
bpo-47127: Specialize calls for fastcall c methods with keywords (GH-32125)
https://github.com/python/cpython/commit/58448cbd96f77ebc6fca1f8030bedc7744eb66ef
History
Date User Action Args
2022-04-11 14:59:57adminsetgithub: 91283
2022-03-30 10:55:06kumaradityasetstatus: open -> closed
resolution: fixed
stage: resolved
2022-03-27 19:53:33kjsetnosy: + kj
messages: + msg416134
2022-03-26 12:16:33kumaradityacreate