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 vstinner
Recipients eric.snow, methane, vstinner
Date 2017-01-16.23:24:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1484609084.15.0.406928886689.issue29289@psf.upfronthosting.co.za>
In-reply-to
Content
Attached patch converts methods using METH_VARARGS|METH_KEYWORDS calling convention to METH_FASTCALL using Argument Clinic. This calling convention is faster, and Argument Clinic provides better docstring.

See also issue #29263 "Implement LOAD_METHOD/CALL_METHOD for C functions" and issue #29286 "Use METH_FASTCALL in str methods".
History
Date User Action Args
2017-01-16 23:24:44vstinnersetrecipients: + vstinner, methane, eric.snow
2017-01-16 23:24:44vstinnersetmessageid: <1484609084.15.0.406928886689.issue29289@psf.upfronthosting.co.za>
2017-01-16 23:24:44vstinnerlinkissue29289 messages
2017-01-16 23:24:43vstinnercreate