(self)
| 1258 | class CancelProto(asyncio.Protocol): |
| 1259 | |
| 1260 | def __init__(self): |
| 1261 | self.on_disconnect = _create_future(loop) |
| 1262 | self.is_ssl = False |
| 1263 | |
| 1264 | def connection_lost(self, exc): |
| 1265 | if not self.on_disconnect.done(): |
nothing calls this directly
no test coverage detected