This commit is contained in:
Andrew M. Kuchling 2005-02-10 13:24:50 +00:00
parent d38ddf4ca2
commit bfd7d6a0ea
2 changed files with 2 additions and 2 deletions

View file

@ -213,7 +213,7 @@ def _test():
raise ValueError("wrote %r read %r" % (teststr, got)) raise ValueError("wrote %r read %r" % (teststr, got))
got = e.read() got = e.read()
if got: if got:
raise ValueError("unexected %r on stderr" % (got,)) raise ValueError("unexpected %r on stderr" % (got,))
for inst in _active[:]: for inst in _active[:]:
inst.wait() inst.wait()
if _active: if _active:

View file

@ -62,7 +62,7 @@ def _test():
raise ValueError("wrote %r read %r" % (teststr, got)) raise ValueError("wrote %r read %r" % (teststr, got))
got = e.read() got = e.read()
if got: if got:
raise ValueError("unexected %r on stderr" % (got,)) raise ValueError("unexpected %r on stderr" % (got,))
for inst in popen2._active[:]: for inst in popen2._active[:]:
inst.wait() inst.wait()
if popen2._active: if popen2._active: