summaryrefslogtreecommitdiffstats
path: root/Lib/popen2.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/popen2.py')
-rw-r--r--Lib/popen2.py2
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