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 cito
Recipients benjamin.peterson, cito, mishok13
Date 2008-07-14.18:22:01
SpamBayes Score 0.001004622
Marked as misclassified No
Message-id <1216059812.77.0.848775842372.issue3354@psf.upfronthosting.co.za>
In-reply-to
Content
The unspecific error message is thrown by the vgetargskeywords()
function, so changing this behavior would be a larger, more difficult
and general issue (similar to #1283289). We could go another path and
require an object for 'reverse' instead of an integer in the format
parameter, and then do our own checks and error messages on 'reverse'.
This looks reasonable if we want to change the behavior anyway, so that
reverse=None is accepted (cmp=None and key=None are also accepted), or
even an implicit bool(reverse) is used (but this could hide possible
errors). If we want to keep the behavior and only fix the error message,
then a more general fix of vgetargskeywords() seems to be the proper
solution.
History
Date User Action Args
2008-07-14 18:23:33citosetspambayes_score: 0.00100462 -> 0.001004622
recipients: + cito, benjamin.peterson, mishok13
2008-07-14 18:23:32citosetspambayes_score: 0.00100462 -> 0.00100462
messageid: <1216059812.77.0.848775842372.issue3354@psf.upfronthosting.co.za>
2008-07-14 18:22:10citolinkissue3354 messages
2008-07-14 18:22:08citocreate