mirror of
https://github.com/python/cpython.git
synced 2025-11-25 21:11:09 +00:00
Fix a typo
This commit is contained in:
parent
5aa1dd5f06
commit
cc1343140d
1 changed files with 1 additions and 1 deletions
|
|
@ -7,7 +7,7 @@ import unittest
|
||||||
from test.fork_wait import ForkWait
|
from test.fork_wait import ForkWait
|
||||||
from test.support import run_unittest, reap_children
|
from test.support import run_unittest, reap_children
|
||||||
|
|
||||||
if not hassattr(os, 'fork'):
|
if not hasattr(os, 'fork'):
|
||||||
raise unittest.SkipTest("os.fork not defined")
|
raise unittest.SkipTest("os.fork not defined")
|
||||||
|
|
||||||
if not hasattr(os, 'wait3'):
|
if not hasattr(os, 'wait3'):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue