cope with weird Content-Length values returned from servers by

ignoring them; e.g. Zope sometimes returns 13497L
This commit is contained in:
Jeremy Hylton 2000-09-14 20:34:27 +00:00
parent 7a666b83c8
commit 30a818196e
1 changed files with 4 additions and 1 deletions

View File

@ -166,7 +166,10 @@ class HTTPResponse:
# NOTE: RFC 2616, S4.4, #3 says we ignore this if tr_enc is "chunked"
length = self.msg.getheader('content-length')
if length and not self.chunked:
self.length = int(length)
try:
self.length = int(length)
except ValueError:
self.length = None
else:
self.length = None