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 larry
Recipients christian.heimes, larry, vajrasky
Date 2014-01-10.03:14:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1389323652.6.0.344256835142.issue20173@psf.upfronthosting.co.za>
In-reply-to
Content
Right, it doesn't work because you left the PyArg_ParseTuple call in your impl function.  Remove that and it should work.

Rule 1: Argument Clinic handles all argument parsing for you.  Your "impl" function should never call PyArg_ParseTuple or PyArg_ParseTupleAndKeywords.
Rule 2: Never modify the output of Argument Clinic by hand.
History
Date User Action Args
2014-01-10 03:14:12larrysetrecipients: + larry, christian.heimes, vajrasky
2014-01-10 03:14:12larrysetmessageid: <1389323652.6.0.344256835142.issue20173@psf.upfronthosting.co.za>
2014-01-10 03:14:12larrylinkissue20173 messages
2014-01-10 03:14:12larrycreate