diff options
-rw-r--r-- | Lib/httplib.py | 4 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/Lib/httplib.py b/Lib/httplib.py index 403e4eed00..137a9eaa8a 100644 --- a/Lib/httplib.py +++ b/Lib/httplib.py @@ -571,6 +571,10 @@ class HTTPResponse: ### note: we shouldn't have any trailers! while True: line = self.fp.readline() + if not line: + # a vanishingly small number of sites EOF without + # sending the trailer + break if line == '\r\n': break @@ -83,6 +83,9 @@ Core and builtins Library ------- +- Patch #1966: Break infinite loop in httplib when the servers + implements the chunked encoding incorrectly. + - tarfile.py: Fix reading of xstar archives. - #2021: Allow tempfile.NamedTemporaryFile to be used in with statements |