Whitespace normalization.

This commit is contained in:
Tim Peters 2002-11-24 02:35:35 +00:00
parent b808c5cf2d
commit 77c06fbf94
20 changed files with 13 additions and 36 deletions

View file

@ -352,7 +352,7 @@ class HTTPResponse:
# For older HTTP, Keep-Alive indiciates persistent connection.
if self.msg.getheader('keep-alive'):
return False
# Proxy-Connection is a netscape hack.
pconn = self.msg.getheader('proxy-connection')
if pconn and pconn.lower().find("keep-alive") >= 0: