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 serhiy.storchaka
Recipients barry, berker.peksag, larry, r.david.murray, serhiy.storchaka
Date 2014-01-15.10:27:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1389781674.91.0.354901974167.issue20187@psf.upfronthosting.co.za>
In-reply-to
Content
I want to warn against the converting of base objects (whose sources lie in Objects/). Their performance is critical and the converting can worsen it. Often they even don't use PyArg_ParseTuple due to performance reasons or because argument parsing is too special for PyArg_ParseTuple. I would suggest to postpone it until Argument Clinic will generate optimized parsing code.

The same is true for some modules. The performance of struct and operator is important. In any case these modules almost not use PyArg_ParseTuple and can be omitted.
History
Date User Action Args
2014-01-15 10:27:54serhiy.storchakasetrecipients: + serhiy.storchaka, barry, larry, r.david.murray, berker.peksag
2014-01-15 10:27:54serhiy.storchakasetmessageid: <1389781674.91.0.354901974167.issue20187@psf.upfronthosting.co.za>
2014-01-15 10:27:54serhiy.storchakalinkissue20187 messages
2014-01-15 10:27:54serhiy.storchakacreate