~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/http/_urllib2_wrappers.py

remove all trailing whitespace from bzr source

Show diffs side-by-side

added added

removed removed

Lines of Context:
211
211
        # Preserve our preciousss
212
212
        sock = self.sock
213
213
        self.sock = None
214
 
        # Let httplib.HTTPConnection do its housekeeping 
 
214
        # Let httplib.HTTPConnection do its housekeeping
215
215
        self.close()
216
216
        # Restore our preciousss
217
217
        self.sock = sock
315
315
 
316
316
    def __init__(self, request):
317
317
        """Constructor
318
 
        
 
318
 
319
319
        :param request: the first request sent to the proxied host, already
320
320
            processed by the opener (i.e. proxied_host is already set).
321
321
        """
638
638
                        connect.proxied_host, self.host))
639
639
            # Housekeeping
640
640
            connection.cleanup_pipe()
641
 
            # Establish the connection encryption 
 
641
            # Establish the connection encryption
642
642
            connection.connect_to_origin()
643
643
            # Propagate the connection to the original request
644
644
            request.connection = connection
1009
1009
        (digest's nonce is an example, digest's nonce_count is a
1010
1010
        *counter-example*). Such parameters must be updated by
1011
1011
        using the update_auth() method.
1012
 
        
 
1012
 
1013
1013
        :param header: The authentication header sent by the server.
1014
1014
        :param auth: The auth parameters already known. They may be
1015
1015
             updated.