[issue43447] Generate vectorcall code to parse arguments using Argument Clinic

2022-03-06 Thread Kumar Aditya
Change by Kumar Aditya : -- nosy: +kumaraditya303 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43447] Generate vectorcall code to parse arguments using Argument Clinic

2021-04-06 Thread Dong-hee Na
Change by Dong-hee Na : -- assignee: -> corona10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43447] Generate vectorcall code to parse arguments using Argument Clinic

2021-03-22 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- nosy: +erlendaasland ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43447] Generate vectorcall code to parse arguments using Argument Clinic

2021-03-20 Thread Dong-hee Na
Dong-hee Na added the comment: I agree with we should update AC to generate vectorcall. I am going to investigate what we can :) -- ___ Python tracker ___

[issue43447] Generate vectorcall code to parse arguments using Argument Clinic

2021-03-09 Thread STINNER Victor
New submission from STINNER Victor : To optimize the creation of objects, a lot of "tp_new" methods are defined twice: once in the legacy way (tp_new slot), once with the new VECTORCALL calling convention (tp_vectorcall slot). My concern is that the VECTORCALL implementation copy/paste most