(*args, **kwargs)
| 399 | |
| 400 | @wraps(func) |
| 401 | def inner(*args, **kwargs): |
| 402 | if materialize_futures: |
| 403 | args, kwargs = _materialize_futures(*args, **kwargs) |
| 404 | return func(*args, **kwargs) |
| 405 | |
| 406 | attrs = {'dispatch_mode': dispatch_mode, 'execute_mode': execute_mode, 'blocking': blocking} |
| 407 | setattr(inner, MAGIC_ATTR, attrs) |
nothing calls this directly
no test coverage detected