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

Method resume_reading

Lib/asyncio/sslproto.py:138–144  ·  view source on GitHub ↗

Resume the receiving end. Data received will once again be passed to the protocol's data_received() method.

(self)

Source from the content-addressed store, hash-verified

136 self._ssl_protocol._pause_reading()
137
138 def resume_reading(self):
139 """Resume the receiving end.
140
141 Data received will once again be passed to the protocol's
142 data_received() method.
143 """
144 self._ssl_protocol._resume_reading()
145
146 def set_write_buffer_limits(self, high=None, low=None):
147 """Set the high- and low-water limits for write flow control.

Callers 1

_control_ssl_readingMethod · 0.45

Calls 1

_resume_readingMethod · 0.80

Tested by

no test coverage detected