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

Method _set_read_buffer_limits

Lib/asyncio/sslproto.py:890–894  ·  view source on GitHub ↗
(self, high=None, low=None)

Source from the content-addressed store, hash-verified

888 self._transport.resume_reading()
889
890 def _set_read_buffer_limits(self, high=None, low=None):
891 high, low = add_flowcontrol_defaults(
892 high, low, constants.FLOW_CONTROL_HIGH_WATER_SSL_READ)
893 self._incoming_high_water = high
894 self._incoming_low_water = low
895
896 def _get_read_buffer_size(self):
897 return self._incoming.pending

Callers 2

__init__Method · 0.95

Calls 1

add_flowcontrol_defaultsFunction · 0.85

Tested by

no test coverage detected