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 nielsdevos
Recipients georg.brandl, nielsdevos
Date 2009-04-27.13:10:22
SpamBayes Score 0.007353036
Marked as misclassified No
Message-id <1240837824.79.0.829030678078.issue5856@psf.upfronthosting.co.za>
In-reply-to
Content
The last example of traceback (found on
<http://docs.python.org/library/traceback.html> release 2.6.2) contains
a typo.

  >>> theError = IndexError('tuple indx out of range')
  >>> traceback.format_exception_only(type(theError), theError)
  ['IndexError: tuple index out of range\n']

IndexError('tuple indx out of range') should be IndexError('tuple index
out of range').
History
Date User Action Args
2009-04-27 13:10:25nielsdevossetrecipients: + nielsdevos, georg.brandl
2009-04-27 13:10:24nielsdevossetmessageid: <1240837824.79.0.829030678078.issue5856@psf.upfronthosting.co.za>
2009-04-27 13:10:23nielsdevoslinkissue5856 messages
2009-04-27 13:10:22nielsdevoscreate