(self, req)
| 543 | self.timeout = timeout |
| 544 | |
| 545 | def http_open(self, req): |
| 546 | return self.do_open( |
| 547 | _build_connection( |
| 548 | SpeedtestHTTPConnection, |
| 549 | self.source_address, |
| 550 | self.timeout |
| 551 | ), |
| 552 | req |
| 553 | ) |
| 554 | |
| 555 | http_request = AbstractHTTPHandler.do_request_ |
| 556 |
nothing calls this directly
no test coverage detected