MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / cmd_step_into

Function cmd_step_into

pydevd_plugins/django_debug.py:501–508  ·  view source on GitHub ↗
(py_db, frame, event, info, thread, stop_info, stop)

Source from the content-addressed store, hash-verified

499
500
501def 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
511def cmd_step_over(py_db, frame, event, info, thread, stop_info, stop):

Callers

nothing calls this directly

Calls 4

_is_django_suspendedFunction · 0.85
_is_django_render_callFunction · 0.85
_is_django_resolve_callFunction · 0.85

Tested by

no test coverage detected