MCPcopy Index your code
hub / github.com/RustPython/RustPython / _maybe_resume_transport

Method _maybe_resume_transport

Lib/asyncio/streams.py:480–483  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

478 self._transport = transport
479
480 def _maybe_resume_transport(self):
481 if self._paused and len(self._buffer) <= self._limit:
482 self._paused = False
483 self._transport.resume_reading()
484
485 def feed_eof(self):
486 self._eof = True

Callers 4

readlineMethod · 0.95
readuntilMethod · 0.95
readMethod · 0.95
readexactlyMethod · 0.95

Calls 2

lenFunction · 0.85
resume_readingMethod · 0.45

Tested by

no test coverage detected