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 methane
Recipients methane, serhiy.storchaka, vstinner
Date 2017-01-14.07:13:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1484377993.03.0.938024528988.issue29259@psf.upfronthosting.co.za>
In-reply-to
Content
1. _PyCFunction_FastCallKeywords() calls _PyStack_AsDict(), then calls _PyCFunction_FastCallDict().
2. _PyCFunction_FastCallDict() calls _Py_FastCall_FromArgs() when METH_FASTCALL.
3. _Py_FastCall_FromArgs() calls _PyStack_UnpackDict(), then calls fastcall().

Can you remove this _PyStack_AsDict() & _PyStack_UnpackDict() by creating shortcut in _PyCFunction_FastCallKeywords()?
History
Date User Action Args
2017-01-14 07:13:13methanesetrecipients: + methane, vstinner, serhiy.storchaka
2017-01-14 07:13:13methanesetmessageid: <1484377993.03.0.938024528988.issue29259@psf.upfronthosting.co.za>
2017-01-14 07:13:13methanelinkissue29259 messages
2017-01-14 07:13:12methanecreate