From: Andrew M. Kuchling Date: Thu, 10 Feb 2005 13:46:14 +0000 (+0000) Subject: Fix typo X-Git-Tag: v2.4.1c1~50 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=89dbd9a0555a04623f641c7f3c567770508cf88f;p=thirdparty%2FPython%2Fcpython.git Fix typo --- diff --git a/Lib/popen2.py b/Lib/popen2.py index 3f84bf9e8526..54543bed0f8d 100644 --- a/Lib/popen2.py +++ b/Lib/popen2.py @@ -213,7 +213,7 @@ def _test(): raise ValueError("wrote %r read %r" % (teststr, got)) got = e.read() if got: - raise ValueError("unexected %r on stderr" % (got,)) + raise ValueError("unexpected %r on stderr" % (got,)) for inst in _active[:]: inst.wait() if _active: diff --git a/Lib/test/test_popen2.py b/Lib/test/test_popen2.py index 2a15a206e610..18142ecc13ca 100644 --- a/Lib/test/test_popen2.py +++ b/Lib/test/test_popen2.py @@ -62,7 +62,7 @@ def _test(): raise ValueError("wrote %r read %r" % (teststr, got)) got = e.read() if got: - raise ValueError("unexected %r on stderr" % (got,)) + raise ValueError("unexpected %r on stderr" % (got,)) for inst in popen2._active[:]: inst.wait() if popen2._active: