[Python-checkins] CVS: python/dist/src/Lib popen2.py,1.11,1.12

Jeremy Hylton python-dev@python.org
Mon, 10 Jul 2000 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 ----