From: Senthil Kumaran Date: Mon, 4 Oct 2010 05:42:58 +0000 (+0000) Subject: Remove the debugging print line from the test. X-Git-Tag: v3.2a3~61 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f580adee279d0c7952b5d85cf5ca6497260d2635;p=python Remove the debugging print line from the test. --- diff --git a/Lib/test/test_httplib.py b/Lib/test/test_httplib.py index 5a6422dcad..ab2a3e6373 100644 --- a/Lib/test/test_httplib.py +++ b/Lib/test/test_httplib.py @@ -95,7 +95,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)