(self)
| 492 | ) |
| 493 | |
| 494 | def _remove_timeout(self) -> None: |
| 495 | if self._timeout is not None: |
| 496 | self.io_loop.remove_timeout(self._timeout) |
| 497 | self._timeout = None |
| 498 | |
| 499 | def _create_connection(self, stream: IOStream) -> HTTP1Connection: |
| 500 | stream.set_nodelay(True) |
no test coverage detected