From: Jeremy Hylton Date: Mon, 10 Jul 2000 14:28:25 +0000 (+0000) Subject: remove prints of file objects from _test X-Git-Tag: v2.0b1~923 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fb8849c4a5d9b9c8683d7c5d0191ea0c88955faf;p=thirdparty%2FPython%2Fcpython.git remove prints of file objects from _test --- diff --git a/Lib/popen2.py b/Lib/popen2.py index c4d3e4c61ecd..b20a36474db9 100644 --- a/Lib/popen2.py +++ b/Lib/popen2.py @@ -143,7 +143,6 @@ def _test(): teststr = "abc\n" print "testing popen2..." r, w = popen2('cat') - print r, w w.write(teststr) w.close() assert r.read() == teststr @@ -152,7 +151,6 @@ def _test(): r, w, e = popen3(['cat']) except: r, w, e = popen3('cat') - print r, w, e w.write(teststr) w.close() assert r.read() == teststr