Called when keepalive timeout expires.
(self)
| 666 | self._keepalive_handle = None |
| 667 | |
| 668 | def _keepalive_timeout(self): |
| 669 | """Called when keepalive timeout expires.""" |
| 670 | self._close_transport() |
| 671 | |
| 672 | def connection_lost(self, exc): |
| 673 | """Called when the connection is lost or closed. |
nothing calls this directly
no test coverage detected