MCPcopy
hub / github.com/tornadoweb/tornado / _handle_select

Method _handle_select

tornado/platform/asyncio.py:641–648  ·  view source on GitHub ↗
(
        self, rs: List[_FileDescriptorLike], ws: List[_FileDescriptorLike]
    )

Source from the content-addressed store, hash-verified

639 pass
640
641 def _handle_select(
642 self, rs: List[_FileDescriptorLike], ws: List[_FileDescriptorLike]
643 ) -> None:
644 for r in rs:
645 self._handle_event(r, self._readers)
646 for w in ws:
647 self._handle_event(w, self._writers)
648 self._start_select()
649
650 def _handle_event(
651 self,

Callers

nothing calls this directly

Calls 2

_handle_eventMethod · 0.95
_start_selectMethod · 0.95

Tested by

no test coverage detected