mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Raise statement normalization in Lib/test/.
This commit is contained in:
parent
e0281cab81
commit
3add4d78ff
47 changed files with 218 additions and 218 deletions
|
|
@ -9,12 +9,12 @@ from test.test_support import TestSkipped, run_unittest, reap_children
|
|||
try:
|
||||
os.fork
|
||||
except AttributeError:
|
||||
raise TestSkipped, "os.fork not defined -- skipping test_wait4"
|
||||
raise TestSkipped("os.fork not defined -- skipping test_wait4")
|
||||
|
||||
try:
|
||||
os.wait4
|
||||
except AttributeError:
|
||||
raise TestSkipped, "os.wait4 not defined -- skipping test_wait4"
|
||||
raise TestSkipped("os.wait4 not defined -- skipping test_wait4")
|
||||
|
||||
class Wait4Test(ForkWait):
|
||||
def wait_impl(self, cpid):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue