(py_db, frame, event, thread, stop_info, arg, step_cmd)
| 525 | |
| 526 | |
| 527 | def stop(py_db, frame, event, thread, stop_info, arg, step_cmd): |
| 528 | if "django_stop" in stop_info and stop_info["django_stop"]: |
| 529 | frame = suspend_django(py_db, thread, DjangoTemplateFrame(frame), step_cmd) |
| 530 | if frame: |
| 531 | py_db.do_wait_suspend(thread, frame, event, arg) |
| 532 | return True |
| 533 | return False |
| 534 | |
| 535 | |
| 536 | def get_breakpoint(py_db, frame, event, info): |
nothing calls this directly
no test coverage detected