(self)
| 716 | self._process_outgoing() |
| 717 | |
| 718 | def _process_outgoing(self): |
| 719 | if not self._ssl_writing_paused: |
| 720 | data = self._outgoing.read() |
| 721 | if len(data): |
| 722 | self._transport.write(data) |
| 723 | self._control_app_writing() |
| 724 | |
| 725 | # Incoming flow |
| 726 |
no test coverage detected