(self, shutdown_exc)
| 659 | self._on_shutdown_complete(None) |
| 660 | |
| 661 | def _on_shutdown_complete(self, shutdown_exc): |
| 662 | if self._shutdown_timeout_handle is not None: |
| 663 | self._shutdown_timeout_handle.cancel() |
| 664 | self._shutdown_timeout_handle = None |
| 665 | |
| 666 | if shutdown_exc: |
| 667 | self._fatal_error(shutdown_exc) |
| 668 | else: |
| 669 | self._loop.call_soon(self._transport.close) |
| 670 | |
| 671 | def _abort(self, exc): |
| 672 | self._set_state(SSLProtocolState.UNWRAPPED) |
no test coverage detected