(self, exc)
| 566 | class MyProto(MyBaseProto): |
| 567 | |
| 568 | def connection_lost(self, exc): |
| 569 | super().connection_lost(exc) |
| 570 | loop.call_soon(loop.stop) |
| 571 | |
| 572 | def data_received(self, data): |
| 573 | super().data_received(data) |
nothing calls this directly
no test coverage detected