(func)
| 34 | |
| 35 | @contextlib.contextmanager |
| 36 | def clear_executors(func): |
| 37 | # Clear executors in func before and after running a block |
| 38 | reset_code(func) |
| 39 | try: |
| 40 | yield |
| 41 | finally: |
| 42 | reset_code(func) |
| 43 | |
| 44 | |
| 45 | def get_first_executor(func): |
nothing calls this directly
no test coverage detected
searching dependent graphs…