Whether there is any input available to be read
(self, timeout=0.0)
| 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 |
nothing calls this directly
no test coverage detected