diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-03-27 18:13:59 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-03-27 18:13:59 (GMT) |
commit | 67ddccafc39c49b53bf1166c6fda603406d59640 (patch) | |
tree | d210b67ca7c08610eb9dcad4164e2034fa38d7ec /Lib/unittest | |
parent | 9869e60dc2e7803f31af47a37fcc6392262496d8 (diff) | |
parent | 184e59357e1444d32938d6f2b829b618f1eb8790 (diff) | |
download | cpython-67ddccafc39c49b53bf1166c6fda603406d59640.zip cpython-67ddccafc39c49b53bf1166c6fda603406d59640.tar.gz cpython-67ddccafc39c49b53bf1166c6fda603406d59640.tar.bz2 |
#17329: merge with 3.3.
Diffstat (limited to 'Lib/unittest')
-rw-r--r-- | Lib/unittest/case.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py index cf7301b..881a690 100644 --- a/Lib/unittest/case.py +++ b/Lib/unittest/case.py @@ -23,7 +23,7 @@ class SkipTest(Exception): """ Raise this exception in a test to skip it. - Usually you can use TestResult.skip() or one of the skipping decorators + Usually you can use TestCase.skipTest() or one of the skipping decorators instead of raising this directly. """ |