diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-03-27 18:12:55 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-03-27 18:12:55 (GMT) |
commit | 184e59357e1444d32938d6f2b829b618f1eb8790 (patch) | |
tree | 93dc32bd0ad9b430ab9f514d1e9f9e413ca25211 /Lib | |
parent | 768f6a53601a6c4e0b914aaedb977dd2ca97532a (diff) | |
parent | 265281ac02d4ab82a8acdd38a1c38c4ecd9ce60d (diff) | |
download | cpython-184e59357e1444d32938d6f2b829b618f1eb8790.zip cpython-184e59357e1444d32938d6f2b829b618f1eb8790.tar.gz cpython-184e59357e1444d32938d6f2b829b618f1eb8790.tar.bz2 |
#17329: merge with 3.2.
Diffstat (limited to 'Lib')
-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 ad1fa84..dd513061 100644 --- a/Lib/unittest/case.py +++ b/Lib/unittest/case.py @@ -22,7 +22,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. """ |