[Python-checkins] r67781 - python/branches/py3k/Lib/test/test_httplib.py
jeremy.hylton
python-checkins at python.org
Mon Dec 15 04:08:30 CET 2008
Author: jeremy.hylton
Date: Mon Dec 15 04:08:30 2008
New Revision: 67781
Log:
Reflow long line.
Modified:
python/branches/py3k/Lib/test/test_httplib.py
Modified: python/branches/py3k/Lib/test/test_httplib.py
==============================================================================
--- python/branches/py3k/Lib/test/test_httplib.py (original)
+++ python/branches/py3k/Lib/test/test_httplib.py Mon Dec 15 04:08:30 2008
@@ -188,7 +188,8 @@
resp.close()
def test_negative_content_length(self):
- sock = FakeSocket('HTTP/1.1 200 OK\r\nContent-Length: -1\r\n\r\nHello\r\n')
+ sock = FakeSocket(
+ 'HTTP/1.1 200 OK\r\nContent-Length: -1\r\n\r\nHello\r\n')
resp = httplib.HTTPResponse(sock, method="GET")
resp.begin()
self.assertEquals(resp.read(), b'Hello\r\n')
More information about the Python-checkins
mailing list