(
children: Sequence[_Yieldable],
quiet_exceptions: Union[Type[Exception], Tuple[Type[Exception], ...]] = (),
)
| 439 | |
| 440 | @overload |
| 441 | def multi( |
| 442 | children: Sequence[_Yieldable], |
| 443 | quiet_exceptions: Union[Type[Exception], Tuple[Type[Exception], ...]] = (), |
| 444 | ) -> Future[List]: ... |
| 445 | |
| 446 | |
| 447 | @overload |
no test coverage detected