(self, req)
| 567 | self.timeout = timeout |
| 568 | |
| 569 | def https_open(self, req): |
| 570 | return self.do_open( |
| 571 | _build_connection( |
| 572 | SpeedtestHTTPSConnection, |
| 573 | self.source_address, |
| 574 | self.timeout, |
| 575 | context=self._context, |
| 576 | ), |
| 577 | req |
| 578 | ) |
| 579 | |
| 580 | https_request = AbstractHTTPHandler.do_request_ |
| 581 |
nothing calls this directly
no test coverage detected