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

Method _read_from_self

Lib/asyncio/selector_events.py:129–139  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

127 pass
128
129 def _read_from_self(self):
130 while True:
131 try:
132 data = self._ssock.recv(4096)
133 if not data:
134 break
135 self._process_self_data(data)
136 except InterruptedError:
137 continue
138 except BlockingIOError:
139 break
140
141 def _write_to_self(self):
142 # This may be called from a different thread, possibly after

Callers 1

Calls 2

_process_self_dataMethod · 0.95
recvMethod · 0.45

Tested by 1