]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo
authorAndrew M. Kuchling <amk@amk.ca>
Thu, 10 Feb 2005 13:46:14 +0000 (13:46 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Thu, 10 Feb 2005 13:46:14 +0000 (13:46 +0000)
Lib/popen2.py
Lib/test/test_popen2.py

index 3f84bf9e852695d1e70c8d16fb66efc551a99316..54543bed0f8d355c72ec37a09b0dbb2ede7b45fd 100644 (file)
@@ -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:
index 2a15a206e61003975707bf5b97d5ef49204041f6..18142ecc13ca31418c7935d3057df4658c09fd7e 100644 (file)
@@ -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: