summaryrefslogtreecommitdiff
path: root/Lib/unittest/case.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-02-08 21:52:08 +0000
committerEzio Melotti <ezio.melotti@gmail.com>2010-02-08 21:52:08 +0000
commitcd4f6578097e508f808da42edcd3421fb516c3f6 (patch)
tree87e7aec54e9b8ff26110da12b2943b54d2099183 /Lib/unittest/case.py
parentcfc43e9435e4f7428f6dfb163ab8f3846dd3af28 (diff)
downloadcpython-git-cd4f6578097e508f808da42edcd3421fb516c3f6.tar.gz
Fix exc_value -> exception in docstring
Diffstat (limited to 'Lib/unittest/case.py')
-rw-r--r--Lib/unittest/case.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py
index 4acfa6539a..f3c2844796 100644
--- a/Lib/unittest/case.py
+++ b/Lib/unittest/case.py
@@ -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: