diff options
Diffstat (limited to 'Lib/test/fork_wait.py')
| -rw-r--r-- | Lib/test/fork_wait.py | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/test/fork_wait.py b/Lib/test/fork_wait.py index 3c75de3..cc51f89 100644 --- a/Lib/test/fork_wait.py +++ b/Lib/test/fork_wait.py @@ -1,6 +1,6 @@  """This test case provides support for checking forking and wait behavior. -To test different wait behavior, overrise the wait_impl method. +To test different wait behavior, override the wait_impl method.  We want fork1() semantics -- only the forking thread survives in the  child after a fork(). @@ -12,7 +12,9 @@ While BeOS doesn't officially support fork and native threading in  the same application, the present example should work just fine.  DC  """ -import os, sys, time, thread, unittest +import os, sys, time, unittest +import test.test_support as test_support +thread = test_support.import_module('thread')  LONGSLEEP = 2  SHORTSLEEP = 0.5  | 
