(code, scope)
| 19 | code = code.strip('\n') |
| 20 | |
| 21 | def run_code(code, scope): |
| 22 | with use_scope(scope): |
| 23 | exec(code, globals()) |
| 24 | |
| 25 | with use_scope() as scope: |
| 26 | put_code(code, 'python') |
nothing calls this directly
no test coverage detected
searching dependent graphs…