diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-07-10 14:28:25 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-07-10 14:28:25 (GMT) |
commit | fb8849c4a5d9b9c8683d7c5d0191ea0c88955faf (patch) | |
tree | 07a23e5db416f2cfbf04fba5b1b3fb2c27aaa3aa | |
parent | a5ae49058402ff2c1b3659914c6405fda3e68520 (diff) | |
download | cpython-fb8849c4a5d9b9c8683d7c5d0191ea0c88955faf.zip cpython-fb8849c4a5d9b9c8683d7c5d0191ea0c88955faf.tar.gz cpython-fb8849c4a5d9b9c8683d7c5d0191ea0c88955faf.tar.bz2 |
remove prints of file objects from _test
-rw-r--r-- | Lib/popen2.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/popen2.py b/Lib/popen2.py index c4d3e4c..b20a364 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 |