From: Senthil Kumaran Date: Mon, 4 Oct 2010 05:45:46 +0000 (+0000) Subject: Merged revisions 85209 via svnmerge from X-Git-Tag: v3.1.3rc1~170 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3cc7d7ae89d4ff2c719c8e4b4d4046cbbf4a23f2;p=thirdparty%2FPython%2Fcpython.git 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. ........ --- diff --git a/Lib/test/test_httplib.py b/Lib/test/test_httplib.py index 642f06367da1..6b703dd43c3a 100644 --- a/Lib/test/test_httplib.py +++ b/Lib/test/test_httplib.py @@ -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)