@@ -276,7 +276,7 @@ def begin(self):
276276 break
277277 if self .debuglevel > 0 :
278278 print "header:" , skip
279-
279+
280280 self .status = status
281281 self .reason = reason .strip ()
282282 if version == 'HTTP/1.0' :
@@ -482,7 +482,7 @@ def __init__(self, host, port=None, strict=None):
482482 self ._buffer = []
483483 self .__response = None
484484 self .__state = _CS_IDLE
485-
485+
486486 self ._set_hostport (host , port )
487487 if strict is not None :
488488 self .strict = strict
@@ -815,7 +815,7 @@ class SSLFile(SharedSocketClient):
815815 """File-like object wrapping an SSL socket."""
816816
817817 BUFSIZE = 8192
818-
818+
819819 def __init__ (self , sock , ssl , bufsize = None ):
820820 SharedSocketClient .__init__ (self , sock )
821821 self ._ssl = ssl
@@ -1139,7 +1139,7 @@ def read(self, amt=None):
11391139 if amt is None :
11401140 return s + self ._file .read ()
11411141 else :
1142- return s + self ._file .read (amt - len (s ))
1142+ return s + self ._file .read (amt - len (s ))
11431143 else :
11441144 assert amt <= self ._line_left
11451145 i = self ._line_offset
@@ -1150,7 +1150,7 @@ def read(self, amt=None):
11501150 if self ._line_left == 0 :
11511151 self ._done ()
11521152 return s
1153-
1153+
11541154 def readline (self ):
11551155 s = self ._line [self ._line_offset :]
11561156 self ._done ()
@@ -1207,7 +1207,7 @@ class HTTP11(HTTP):
12071207 h .close ()
12081208
12091209 if hasattr (socket , 'ssl' ):
1210-
1210+
12111211 for host , selector in (('sourceforge.net' , '/projects/python' ),
12121212 ('dbserv2.theopalgroup.com' , '/mediumfile' ),
12131213 ('dbserv2.theopalgroup.com' , '/smallfile' ),
0 commit comments