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

Method pause_writing

Lib/asyncio/sslproto.py:901–906  ·  view source on GitHub ↗

Called when the low-level transport's buffer goes over the high-water mark.

(self)

Source from the content-addressed store, hash-verified

899 # Flow control for writes to SSL socket
900
901 def pause_writing(self):
902 """Called when the low-level transport's buffer goes over
903 the high-water mark.
904 """
905 assert not self._ssl_writing_paused
906 self._ssl_writing_paused = True
907
908 def resume_writing(self):
909 """Called when the low-level transport's buffer drains below

Callers 5

_control_app_writingMethod · 0.45
_maybe_pause_protocolMethod · 0.45
clientMethod · 0.45
test_protocolMethod · 0.45

Calls

no outgoing calls

Tested by 3

clientMethod · 0.36
test_protocolMethod · 0.36