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 draghuram
Recipients draghuram
Date 2007-11-19.20:23:59
SpamBayes Score 0.029162634
Marked as misclassified No
Message-id <1195503839.36.0.580839087549.issue1467@psf.upfronthosting.co.za>
In-reply-to
Content
The page at
http://docs.python.org/dev/library/unittest.html#module-unittest says:

-------------
TestResult.addError(test, err)

    Called when the test case test raises an unexpected exception err is
a tuple of the form returned by sys.exc_info(): (type, value, traceback).

    The default implementation appends (test, err) to the instance's
errors attribute.
--------------

Starting from 2.2, a formatted traceback is added to the "error"
attribute instead of the actual sys.exc_info(). The same error is
present for addFailure() as well.
History
Date User Action Args
2007-11-19 20:23:59draghuramsetspambayes_score: 0.0291626 -> 0.029162634
recipients: + draghuram
2007-11-19 20:23:59draghuramsetspambayes_score: 0.0291626 -> 0.0291626
messageid: <1195503839.36.0.580839087549.issue1467@psf.upfronthosting.co.za>
2007-11-19 20:23:59draghuramlinkissue1467 messages
2007-11-19 20:23:59draghuramcreate