[issue20187] The Great Argument Clinic Conversion Derby Meta-Issue

Serhiy Storchaka report at bugs.python.org
Wed Jan 15 11:27:54 CET 2014


Serhiy Storchaka added the comment:

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.

----------
nosy: +serhiy.storchaka

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue20187>
_______________________________________


More information about the Python-bugs-list mailing list