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 <[email protected]>
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: <[email protected]>
2014-01-10 03:14:12larrylinkissue20173 messages
2014-01-10 03:14:12larrycreate