mirror of
https://github.com/python/cpython.git
synced 2025-08-01 15:43:13 +00:00
Revert incorrect change.
This commit is contained in:
parent
d1f52606c5
commit
5cb104d1b9
1 changed files with 6 additions and 3 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue