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

Method resume_writing

Lib/asyncio/sslproto.py:908–914  ·  view source on GitHub ↗

Called when the low-level transport's buffer drains below the low-water mark.

(self)

Source from the content-addressed store, hash-verified

906 self._ssl_writing_paused = True
907
908 def resume_writing(self):
909 """Called when the low-level transport's buffer drains below
910 the low-water mark.
911 """
912 assert self._ssl_writing_paused
913 self._ssl_writing_paused = False
914 self._process_outgoing()
915
916 def _fatal_error(self, exc, message='Fatal error on transport'):
917 if self._transport:

Callers 5

_control_app_writingMethod · 0.45
clientMethod · 0.45
test_protocolMethod · 0.45

Calls 1

_process_outgoingMethod · 0.95

Tested by 3

clientMethod · 0.36
test_protocolMethod · 0.36