From: Brett Cannon Date: Wed, 14 Nov 2012 20:49:55 +0000 (-0500) Subject: Fix a typo X-Git-Tag: v3.4.0a1~2010 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cc1343140dfc9986a23796ce4e7f0b8c188e11b8;p=thirdparty%2FPython%2Fcpython.git Fix a typo --- diff --git a/Lib/test/test_wait3.py b/Lib/test/test_wait3.py index 3d70ced655d7..f6a065d850d9 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'):