| 349 | return NotImplementedError |
| 350 | |
| 351 | class HTTPHandler(KeepAliveHandler, _urllib.request.HTTPHandler): |
| 352 | def __init__(self): |
| 353 | KeepAliveHandler.__init__(self) |
| 354 | |
| 355 | def http_open(self, req): |
| 356 | return self.do_open(req) |
| 357 | |
| 358 | def _get_connection(self, host): |
| 359 | return HTTPConnection(host) |
| 360 | |
| 361 | class HTTPSHandler(KeepAliveHandler, _urllib.request.HTTPSHandler): |
| 362 | def __init__(self, ssl_factory=None): |
no outgoing calls
no test coverage detected
searching dependent graphs…