MCPcopy Index your code
hub / github.com/python/cpython / _process_outgoing

Method _process_outgoing

Lib/asyncio/sslproto.py:718–723  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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

Callers 5

_do_handshakeMethod · 0.95
_do_shutdownMethod · 0.95
_do_writeMethod · 0.95
_do_readMethod · 0.95
resume_writingMethod · 0.95

Calls 3

_control_app_writingMethod · 0.95
readMethod · 0.45
writeMethod · 0.45

Tested by

no test coverage detected