Fix exc_value -> exception in docstring

This commit is contained in:
Ezio Melotti 2010-02-08 21:52:08 +00:00
parent cfc43e9435
commit cd4f657809

View file

@ -384,7 +384,7 @@ class TestCase(object):
do_something()
The context manager keeps a reference to the exception as
the exc_value attribute. This allows you to inspect the
the 'exception' attribute. This allows you to inspect the
exception after the assertion::
with self.assertRaises(SomeException) as cm: