()
| 70 | |
| 71 | @pyfile |
| 72 | def code_to_debug(): |
| 73 | import debuggee |
| 74 | |
| 75 | debuggee.setup() |
| 76 | for i in range(1, 10): |
| 77 | print(i) # @bp |
| 78 | |
| 79 | with debug.Session() as session: |
| 80 | with run(session, target(code_to_debug)): |
nothing calls this directly
no test coverage detected
searching dependent graphs…