(self)
| 631 | self._do_flush() |
| 632 | |
| 633 | def _check_shutdown_timeout(self): |
| 634 | if ( |
| 635 | self._state in ( |
| 636 | SSLProtocolState.FLUSHING, |
| 637 | SSLProtocolState.SHUTDOWN |
| 638 | ) |
| 639 | ): |
| 640 | self._transport._force_close( |
| 641 | exceptions.TimeoutError('SSL shutdown timed out')) |
| 642 | |
| 643 | def _do_flush(self): |
| 644 | self._do_read() |
nothing calls this directly
no test coverage detected