diff options
| author | Benjamin Peterson <benjamin@python.org> | 2009-03-26 20:48:25 (GMT) |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2009-03-26 20:48:25 (GMT) |
| commit | 888a39b54c4f47ee25d53b157e2c50402627cd0b (patch) | |
| tree | 67a48f107d83b8451e338f1ea822f2b4c65f6960 /Lib/test/test_popen2.py | |
| parent | 21f6aac633a78271e762d6cd4b709e6a91d0c42a (diff) | |
| download | cpython-888a39b54c4f47ee25d53b157e2c50402627cd0b.zip cpython-888a39b54c4f47ee25d53b157e2c50402627cd0b.tar.gz cpython-888a39b54c4f47ee25d53b157e2c50402627cd0b.tar.bz2 | |
remove test_support.TestSkipped and just use unittest.SkipTest
Diffstat (limited to 'Lib/test/test_popen2.py')
| -rw-r--r-- | Lib/test/test_popen2.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_popen2.py b/Lib/test/test_popen2.py index 023871f..0e0c0f4 100644 --- a/Lib/test/test_popen2.py +++ b/Lib/test/test_popen2.py @@ -12,13 +12,13 @@ import sys import unittest import popen2 -from test.test_support import TestSkipped, run_unittest, reap_children +from test.test_support import SkipTest, run_unittest, reap_children if sys.platform[:4] == 'beos' or sys.platform[:6] == 'atheos': # Locks get messed up or something. Generally we're supposed # to avoid mixing "posix" fork & exec with native threads, and # they may be right about that after all. - raise TestSkipped("popen2() doesn't work on " + sys.platform) + raise SkipTest("popen2() doesn't work on " + sys.platform) # if we don't have os.popen, check that # we have os.fork. if not, skip the test |
