(cid, *args, unbound=False)
| 40 | |
| 41 | |
| 42 | def recv_nowait(cid, *args, unbound=False): |
| 43 | obj, unboundop = _channels.recv(cid, *args) |
| 44 | assert (unboundop is None) != unbound, repr(unboundop) |
| 45 | return obj |
| 46 | |
| 47 | |
| 48 | #@contextmanager |
no test coverage detected
searching dependent graphs…