(n=2)
| 192 | op_mode = test_mode |
| 193 | |
| 194 | def recursive_helper(n=2): |
| 195 | if n: |
| 196 | return recursive_helper(n - 1) |
| 197 | else: |
| 198 | # using list comprehension or similar will give slightly different results in AG |
| 199 | # We can revisit and maybe tune the filtering/remapping? |
| 200 | return origin_trace() |
| 201 | |
| 202 | def pipe(): |
| 203 | if 0: |