[Python-checkins] cpython: Fix a typo
brett.cannon
python-checkins at python.org
Wed Nov 14 21:50:05 CET 2012
http://hg.python.org/cpython/rev/7f0a2932706f
changeset: 80435:7f0a2932706f
parent: 80433:e4175daac740
user: Brett Cannon <brett at python.org>
date: Wed Nov 14 15:49:55 2012 -0500
summary:
Fix a typo
files:
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
--- a/Lib/test/test_wait3.py
+++ b/Lib/test/test_wait3.py
@@ -7,7 +7,7 @@
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'):
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list