(pydb, frame, event, thread, stop_info, arg, step_cmd)
| 452 | |
| 453 | |
| 454 | def stop(pydb, frame, event, thread, stop_info, arg, step_cmd): |
| 455 | if "jinja2_stop" in stop_info and stop_info["jinja2_stop"]: |
| 456 | frame = _suspend_jinja2(pydb, thread, frame, step_cmd) |
| 457 | if frame: |
| 458 | pydb.do_wait_suspend(thread, frame, event, arg) |
| 459 | return True |
| 460 | return False |
| 461 | |
| 462 | |
| 463 | def get_breakpoint(py_db, frame, event, info): |
nothing calls this directly
no test coverage detected