r"""print all bthread frames
(debugger, command, result, internal_dict)
| 255 | |
| 256 | |
| 257 | def bthread_all(debugger, command, result, internal_dict): |
| 258 | r"""print all bthread frames""" |
| 259 | if not global_state.started: |
| 260 | print("Not in bthread debug mode") |
| 261 | return |
| 262 | |
| 263 | bthreads = global_state.bthreads |
| 264 | bthread_num = len(bthreads) |
| 265 | for i in range(bthread_num): |
| 266 | bthread_frame(debugger, str(i), result, internal_dict) |
| 267 | debugger.HandleCommand("bt") |
| 268 | |
| 269 | |
| 270 | def bthread_meta(debugger, command, result, internal_dict): |
nothing calls this directly
no test coverage detected