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 larry, serhiy.storchaka
Date 2014-01-18.11:43:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1390045406.06.0.938757132567.issue20294@psf.upfronthosting.co.za>
In-reply-to
Content
Currently Argument Clinic doesn't support the __init__ methods, mainly because the C implementation of this method should return int, not PyObject *. In some cases it is possible to wrap a function generated by Argument Clinic (as in Modules/_pickle.c). But not always, because the __init__ method is called with the self, args, and kwargs arguments, while Argument Clinic can generate function without kwargs.
History
Date User Action Args
2014-01-18 11:43:26serhiy.storchakasetrecipients: + serhiy.storchaka, larry
2014-01-18 11:43:26serhiy.storchakasetmessageid: <1390045406.06.0.938757132567.issue20294@psf.upfronthosting.co.za>
2014-01-18 11:43:26serhiy.storchakalinkissue20294 messages
2014-01-18 11:43:25serhiy.storchakacreate