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.

Author colorfulappl
Recipients colorfulappl, erlendaasland, larry
Date 2021-12-31.10:05:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
When "Augument Clinic generated code" are parsing arguments, the args are packed to a tuple before passing to callee. This may be unnecessary.

Pass a raw pointer which points to on-stack varargs, and a varargssize integer to indicate how many varargs are passed, can save the time of tuple creation/destruction and value copy.
History
Date User Action Args
2021-12-31 10:05:47colorfulapplsetrecipients: + colorfulappl, larry, erlendaasland
2021-12-31 10:05:47colorfulapplsetmessageid: <[email protected]>
2021-12-31 10:05:47colorfulappllinkissue46212 messages
2021-12-31 10:05:46colorfulapplcreate