From 3cc7d7ae89d4ff2c719c8e4b4d4046cbbf4a23f2 Mon Sep 17 00:00:00 2001 From: Senthil Kumaran Date: Mon, 4 Oct 2010 05:45:46 +0000 Subject: [PATCH] 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. ........ --- Lib/test/test_httplib.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/test/test_httplib.py b/Lib/test/test_httplib.py index 642f06367d..6b703dd43c 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) -- 2.40.0