diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-10-04 05:45:46 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-10-04 05:45:46 (GMT) |
commit | 3cc7d7ae89d4ff2c719c8e4b4d4046cbbf4a23f2 (patch) | |
tree | fdab0873306b1e2fb161821d45d39015294de312 | |
parent | 97304567a785e4f2fafc394c5029c8411c7d5012 (diff) | |
download | cpython-3cc7d7ae89d4ff2c719c8e4b4d4046cbbf4a23f2.zip cpython-3cc7d7ae89d4ff2c719c8e4b4d4046cbbf4a23f2.tar.gz cpython-3cc7d7ae89d4ff2c719c8e4b4d4046cbbf4a23f2.tar.bz2 |
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.
........
-rw-r--r-- | Lib/test/test_httplib.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_httplib.py b/Lib/test/test_httplib.py index 642f063..6b703dd 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) |