(self, exc: Exception | None)
| 74 | # next(self.parser) isn't useful and would raise EOFError. |
| 75 | |
| 76 | def connection_lost(self, exc: Exception | None) -> None: |
| 77 | self.reader.discard() |
| 78 | self.messages.abort() |
| 79 | |
| 80 | |
| 81 | async def print_incoming_messages(websocket: ClientConnection) -> None: |