(future, other)
| 386 | dest_loop = _get_loop(destination) if isfuture(destination) else None |
| 387 | |
| 388 | def _set_state(future, other): |
| 389 | if isfuture(future): |
| 390 | _copy_future_state(other, future) |
| 391 | else: |
| 392 | _set_concurrent_future_state(future, other) |
| 393 | |
| 394 | def _call_check_cancel(destination): |
| 395 | if destination.cancelled(): |
no test coverage detected
searching dependent graphs…