Whether there is any input available to be read
(self, timeout=0.0)
| 258 | return _ForkingPickler.loads(buf.getbuffer()) |
| 259 | |
| 260 | def poll(self, timeout=0.0): |
| 261 | """Whether there is any input available to be read""" |
| 262 | self._check_closed() |
| 263 | self._check_readable() |
| 264 | return self._poll(timeout) |
| 265 | |
| 266 | def __enter__(self): |
| 267 | return self |
nothing calls this directly
no test coverage detected