[Python-checkins] r85210 - in python/branches/release31-maint: Lib/test/test_httplib.py

senthil.kumaran python-checkins at python.org
Mon Oct 4 07:45:46 CEST 2010


Author: senthil.kumaran
Date: Mon Oct  4 07:45:46 2010
New Revision: 85210

Log:
Merged revisions 85209 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r85209 | senthil.kumaran | 2010-10-04 11:12:58 +0530 (Mon, 04 Oct 2010) | 3 lines
  
  Remove the debugging print line from the test.
........


Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Lib/test/test_httplib.py

Modified: python/branches/release31-maint/Lib/test/test_httplib.py
==============================================================================
--- python/branches/release31-maint/Lib/test/test_httplib.py	(original)
+++ python/branches/release31-maint/Lib/test/test_httplib.py	Mon Oct  4 07:45:46 2010
@@ -94,7 +94,6 @@
         conn.sock = FakeSocket(None)
         conn.putrequest('GET','/')
         conn.putheader('Content-length', 42)
-        print(conn._buffer)
         self.assertTrue(b'Content-length: 42' in conn._buffer)
 
 


More information about the Python-checkins mailing list