summaryrefslogtreecommitdiff
path: root/Lib/test/test_httplib.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-12-17 21:50:02 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2013-12-17 21:50:02 +0200
commit1c84ac1f5528d26cb226210c2843b765efae83a4 (patch)
tree616a012d374352ea0f114d63fc565f69c8f8989d /Lib/test/test_httplib.py
parent48d761e2b4b8cef40349aa286f6f46fc6c6d0fa7 (diff)
downloadcpython-git-1c84ac1f5528d26cb226210c2843b765efae83a4.tar.gz
Issue #20007: HTTPResponse.read(0) no more prematurely closes connection.
Original patch by Simon Sapin.
Diffstat (limited to 'Lib/test/test_httplib.py')
-rw-r--r--Lib/test/test_httplib.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_httplib.py b/Lib/test/test_httplib.py
index f3c27c2df6..4410a93f4f 100644
--- a/Lib/test/test_httplib.py
+++ b/Lib/test/test_httplib.py
@@ -162,6 +162,9 @@ class BasicTest(TestCase):
sock = FakeSocket(body)
resp = client.HTTPResponse(sock)
resp.begin()
+ self.assertEqual(resp.read(0), b'') # Issue #20007
+ self.assertFalse(resp.isclosed())
+ self.assertFalse(resp.closed)
self.assertEqual(resp.read(), b"Text")
self.assertTrue(resp.isclosed())
self.assertFalse(resp.closed)