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

Method resume_reading

Lib/asyncio/unix_events.py:573–579  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

571 logger.debug("%r pauses reading", self)
572
573 def resume_reading(self):
574 if self._closing or not self._paused:
575 return
576 self._paused = False
577 self._loop._add_reader(self._fileno, self._read_ready)
578 if self._loop.get_debug():
579 logger.debug("%r resumes reading", self)
580
581 def set_protocol(self, protocol):
582 self._protocol = protocol

Callers

nothing calls this directly

Calls 3

_add_readerMethod · 0.45
get_debugMethod · 0.45
debugMethod · 0.45

Tested by

no test coverage detected