Revert incorrect change.
This commit is contained in:
parent
d1f52606c5
commit
5cb104d1b9
|
@ -3,11 +3,14 @@
|
|||
|
||||
import os
|
||||
import time
|
||||
import unittest
|
||||
from test.fork_wait import ForkWait
|
||||
from test.test_support import run_unittest, reap_children, import_module
|
||||
|
||||
import_module('os.fork')
|
||||
from test.test_support import run_unittest, reap_children
|
||||
|
||||
try:
|
||||
os.fork
|
||||
except AttributeError:
|
||||
raise unittest.SkipTest, "os.fork not defined -- skipping test_fork1"
|
||||
|
||||
class ForkTest(ForkWait):
|
||||
def wait_impl(self, cpid):
|
||||
|
|
Loading…
Reference in New Issue