[Python-checkins] CVS: python/dist/src/Lib popen2.py,1.11,1.12
Jeremy Hylton
python-dev@python.org
2000年7月10日 07:28:28 -0700
Update of /cvsroot/python/python/dist/src/Lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv8968
Modified Files:
popen2.py
Log Message:
remove prints of file objects from _test
Index: popen2.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/popen2.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** popen2.py 2000年07月09日 23:35:24 1.11
--- popen2.py 2000年07月10日 14:28:25 1.12
***************
*** 144,148 ****
print "testing popen2..."
r, w = popen2('cat')
- print r, w
w.write(teststr)
w.close()
--- 144,147 ----
***************
*** 153,157 ****
except:
r, w, e = popen3('cat')
- print r, w, e
w.write(teststr)
w.close()
--- 152,155 ----