(py_db, frame, event, info, thread, stop_info, stop)
| 499 | |
| 500 | |
| 501 | def cmd_step_into(py_db, frame, event, info, thread, stop_info, stop): |
| 502 | plugin_stop = False |
| 503 | if _is_django_suspended(thread): |
| 504 | plugin_stop = stop_info["django_stop"] = event == "call" and _is_django_render_call(frame) |
| 505 | stop = stop and _is_django_resolve_call(frame.f_back) and not _is_django_context_get_call(frame) |
| 506 | if stop: |
| 507 | info.pydev_django_resolve_frame = True # we remember that we've go into python code from django rendering frame |
| 508 | return stop, plugin_stop |
| 509 | |
| 510 | |
| 511 | def cmd_step_over(py_db, frame, event, info, thread, stop_info, stop): |
nothing calls this directly
no test coverage detected