(py_db, thread, frame, bp_type)
| 566 | |
| 567 | |
| 568 | def suspend(py_db, thread, frame, bp_type): |
| 569 | if bp_type == "django": |
| 570 | return suspend_django(py_db, thread, DjangoTemplateFrame(frame)) |
| 571 | return None |
| 572 | |
| 573 | |
| 574 | def _get_original_filename_from_origin_in_parent_frame_locals(frame, parent_frame_name): |
nothing calls this directly
no test coverage detected