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 terry.reedy
Recipients eric.smith, roysmith, terry.reedy
Date 2014-06-29.16:02:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1404057763.71.0.730194197757.issue21879@psf.upfronthosting.co.za>
In-reply-to
Content
IndexError should be caught and replaced with something like
ValueError('format string requests argument not passed') or
TypeError('arguments do not match format string') or more specific
TypeError('format string requests at least %d positional arguments, only %d passed')
In Roy's example (a good testcase), the numbers would be 1 and 0.
History
Date User Action Args
2014-06-29 16:02:43terry.reedysetrecipients: + terry.reedy, roysmith, eric.smith
2014-06-29 16:02:43terry.reedysetmessageid: <1404057763.71.0.730194197757.issue21879@psf.upfronthosting.co.za>
2014-06-29 16:02:43terry.reedylinkissue21879 messages
2014-06-29 16:02:43terry.reedycreate