(pydb, thread, frame, bp_type)
| 489 | |
| 490 | |
| 491 | def suspend(pydb, thread, frame, bp_type): |
| 492 | if bp_type == "jinja2": |
| 493 | return _suspend_jinja2(pydb, thread, frame) |
| 494 | return None |
| 495 | |
| 496 | |
| 497 | def exception_break(pydb, frame, thread, arg, is_unwind): |
nothing calls this directly
no test coverage detected