r"""exit bthread debug mode
(debugger, command, result, internal_dict)
| 316 | |
| 317 | |
| 318 | def bthread_end(debugger, command, result, internal_dict): |
| 319 | r"""exit bthread debug mode""" |
| 320 | if not global_state.started: |
| 321 | print("Not in bthread debug mode") |
| 322 | return |
| 323 | bthread_reg_restore(debugger, command, result, internal_dict) |
| 324 | global_state.reset() |
| 325 | print("Exit bthread debug mode") |
| 326 | |
| 327 | |
| 328 | # And the initialization code to add commands. |
nothing calls this directly
no test coverage detected