summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2008-12-15 03:08:30 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2008-12-15 03:08:30 (GMT)
commit8206695c4b75e8db8d6d750dc5ba74cf8dfb31b4 (patch)
tree45aed74c7bdebeccb001268db59a49719968d820 /Lib
parent236156f5007c5883871cfd5d0a93d61bb0e2b16e (diff)
downloadcpython-8206695c4b75e8db8d6d750dc5ba74cf8dfb31b4.zip
cpython-8206695c4b75e8db8d6d750dc5ba74cf8dfb31b4.tar.gz
cpython-8206695c4b75e8db8d6d750dc5ba74cf8dfb31b4.tar.bz2
Reflow long line.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_httplib.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_httplib.py b/Lib/test/test_httplib.py
index 054825a..591f956 100644
--- a/Lib/test/test_httplib.py
+++ b/Lib/test/test_httplib.py
@@ -188,7 +188,8 @@ class BasicTest(TestCase):
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')