Terminate the connection without waiting for pending data.
(self)
| 1519 | self._cleanup() |
| 1520 | |
| 1521 | def terminate(self): |
| 1522 | """Terminate the connection without waiting for pending data.""" |
| 1523 | if not self.is_closed(): |
| 1524 | self._abort() |
| 1525 | self._cleanup() |
| 1526 | |
| 1527 | async def _reset(self): |
| 1528 | self._check_open() |