()
| 14 | def test_continue_on_disconnect_for_attach(pyfile, target, run): |
| 15 | @pyfile |
| 16 | def code_to_debug(): |
| 17 | import debuggee |
| 18 | from debuggee import backchannel |
| 19 | |
| 20 | debuggee.setup() |
| 21 | backchannel.send("continued") # @bp |
| 22 | |
| 23 | with debug.Session() as session: |
| 24 | backchannel = session.open_backchannel() |