(self, exc)
| 669 | self._loop.call_soon(self._transport.close) |
| 670 | |
| 671 | def _abort(self, exc): |
| 672 | self._set_state(SSLProtocolState.UNWRAPPED) |
| 673 | if self._transport is not None: |
| 674 | self._transport._force_close(exc) |
| 675 | |
| 676 | # Outgoing flow |
| 677 |
no test coverage detected