]> granicus.if.org Git - python/commitdiff
Merged revisions 85209 via svnmerge from
authorSenthil Kumaran <orsenthil@gmail.com>
Mon, 4 Oct 2010 05:45:46 +0000 (05:45 +0000)
committerSenthil Kumaran <orsenthil@gmail.com>
Mon, 4 Oct 2010 05:45:46 +0000 (05:45 +0000)
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.
........

Lib/test/test_httplib.py

index 642f06367da1dd54d27e3ddc24d996b078194fe5..6b703dd43c3a8f824c61369c7245142c361de5bb 100644 (file)
@@ -94,7 +94,6 @@ class HeaderTests(TestCase):
         conn.sock = FakeSocket(None)
         conn.putrequest('GET','/')
         conn.putheader('Content-length', 42)
-        print(conn._buffer)
         self.assertTrue(b'Content-length: 42' in conn._buffer)