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

Method _check_readable

Lib/multiprocessing/connection.py:139–141  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

137 raise OSError("handle is closed")
138
139 def _check_readable(self):
140 if not self._readable:
141 raise OSError("connection is write-only")
142
143 def _check_writable(self):
144 if not self._writable:

Callers 4

recv_bytesMethod · 0.95
recv_bytes_intoMethod · 0.95
recvMethod · 0.95
pollMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected