(self, exc: typing.Optional[Exception])
| 942 | host=self.host, port=self.port))) |
| 943 | |
| 944 | def connection_lost(self, exc: typing.Optional[Exception]) -> None: |
| 945 | if not self.on_data.done(): |
| 946 | if exc is None: |
| 947 | exc = ConnectionError('unexpected connection_lost() call') |
| 948 | self.on_data.set_exception(exc) |
| 949 | |
| 950 | |
| 951 | _ProctolFactoryR = typing.TypeVar( |
nothing calls this directly
no outgoing calls
no test coverage detected