summaryrefslogtreecommitdiff
path: root/Lib/unittest
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-18 21:26:36 +0200
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-18 21:26:36 +0200
commit5b89840d9cf11014a4b865d79497649f74bf2866 (patch)
treed3ff6d2bce57a9f4b89356c0519b2d6eb9cda7ad /Lib/unittest
parente2303f8970ee6f30d3781ad31f76530d135a57b5 (diff)
parent737fb89dd15e4db6ef30d25963e774ae09cc49dc (diff)
downloadcpython-git-5b89840d9cf11014a4b865d79497649f74bf2866.tar.gz
Issue #16714: use 'raise' exceptions, don't 'throw'.
Patch by Serhiy Storchaka.
Diffstat (limited to 'Lib/unittest')
-rw-r--r--Lib/unittest/case.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py
index 2e5cb044c1..ad1fa8470a 100644
--- a/Lib/unittest/case.py
+++ b/Lib/unittest/case.py
@@ -542,10 +542,10 @@ class TestCase(object):
return '%s : %s' % (safe_repr(standardMsg), safe_repr(msg))
def assertRaises(self, excClass, callableObj=None, *args, **kwargs):
- """Fail unless an exception of class excClass is thrown
+ """Fail unless an exception of class excClass is raised
by callableObj when invoked with arguments args and keyword
arguments kwargs. If a different type of exception is
- thrown, it will not be caught, and the test case will be
+ raised, it will not be caught, and the test case will be
deemed to have suffered an error, exactly as for an
unexpected exception.