(*inputs)
| 93 | condition_arg_error)) |
| 94 | |
| 95 | def condition_wrapper(*inputs): |
| 96 | # Discards the dummy output added for arity-0 loops. |
| 97 | if input_arity == 0: |
| 98 | inputs = [] |
| 99 | return condition(*inputs) |
| 100 | |
| 101 | def body_wrapper(*inputs): |
| 102 | """Wrapper around `body` that handles infeed queues and control deps.""" |
nothing calls this directly
no test coverage detected