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

Method poll

Lib/multiprocessing/connection.py:253–257  ·  view source on GitHub ↗

Whether there is any input available to be read

(self, timeout=0.0)

Source from the content-addressed store, hash-verified

251 return _ForkingPickler.loads(buf.getbuffer())
252
253 def poll(self, timeout=0.0):
254 """Whether there is any input available to be read"""
255 self._check_closed()
256 self._check_readable()
257 return self._poll(timeout)
258
259 def __enter__(self):
260 return self

Callers

nothing calls this directly

Calls 3

_check_closedMethod · 0.95
_check_readableMethod · 0.95
_pollMethod · 0.45

Tested by

no test coverage detected