(self, exc)
| 570 | class MyProto(MyBaseProto): |
| 571 | |
| 572 | def connection_lost(self, exc): |
| 573 | super().connection_lost(exc) |
| 574 | loop.call_soon(loop.stop) |
| 575 | |
| 576 | def data_received(self, data): |
| 577 | super().data_received(data) |
nothing calls this directly
no test coverage detected