diff options
author | Brett Cannon <brett@python.org> | 2012-11-14 20:49:55 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-11-14 20:49:55 (GMT) |
commit | cc1343140dfc9986a23796ce4e7f0b8c188e11b8 (patch) | |
tree | 9a9efdef1b27666651ad4e14cc7ad15aeba2cf94 /Lib/test/test_wait3.py | |
parent | 5aa1dd5f065982dc3e534bbf0d60bd3e6019e712 (diff) | |
download | cpython-cc1343140dfc9986a23796ce4e7f0b8c188e11b8.zip cpython-cc1343140dfc9986a23796ce4e7f0b8c188e11b8.tar.gz cpython-cc1343140dfc9986a23796ce4e7f0b8c188e11b8.tar.bz2 |
Fix a typo
Diffstat (limited to 'Lib/test/test_wait3.py')
-rw-r--r-- | Lib/test/test_wait3.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_wait3.py b/Lib/test/test_wait3.py index 3d70ced..f6a065d 100644 --- a/Lib/test/test_wait3.py +++ b/Lib/test/test_wait3.py @@ -7,7 +7,7 @@ import unittest from test.fork_wait import ForkWait 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") if not hasattr(os, 'wait3'): |