mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
remove prints of file objects from _test
This commit is contained in:
parent
a5ae490584
commit
fb8849c4a5
1 changed files with 0 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue