MCPcopy Index your code
hub / github.com/fabioz/PyDev.Debugger / stop

Function stop

pydevd_plugins/django_debug.py:527–533  ·  view source on GitHub ↗
(py_db, frame, event, thread, stop_info, arg, step_cmd)

Source from the content-addressed store, hash-verified

525
526
527def 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
536def get_breakpoint(py_db, frame, event, info):

Callers

nothing calls this directly

Calls 3

suspend_djangoFunction · 0.85
DjangoTemplateFrameClass · 0.85
do_wait_suspendMethod · 0.45

Tested by

no test coverage detected