Home | History | Annotate | Download | only in httplib2

Lines Matching full:connection_type

966     def request(self, uri, method="GET", body=None, headers=None, redirections=DEFAULT_MAX_REDIRECTS, connection_type=None):
1008 if not connection_type:
1009 connection_type = (scheme == 'https') and HTTPSConnectionWithTimeout or HTTPConnectionWithTimeout
1012 conn = self.connections[conn_key] = connection_type(authority, key_file=certs[0][0],
1015 conn = self.connections[conn_key] = connection_type(authority, timeout=self.timeout, proxy_info=self.proxy_info)