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

Method set_function_breakpoints

_pydevd_bundle/pydevd_api.py:759–765  ·  view source on GitHub ↗
(self, py_db, function_breakpoints)

Source from the content-addressed store, hash-verified

757 py_db.on_breakpoints_changed(removed=True)
758
759 def set_function_breakpoints(self, py_db, function_breakpoints):
760 function_breakpoint_name_to_breakpoint = {}
761 for function_breakpoint in function_breakpoints:
762 function_breakpoint_name_to_breakpoint[function_breakpoint.func_name] = function_breakpoint
763
764 py_db.function_breakpoint_name_to_breakpoint = function_breakpoint_name_to_breakpoint
765 py_db.on_breakpoints_changed()
766
767 def request_exec_or_evaluate(self, py_db, seq, thread_id, frame_id, expression, is_exec, trim_if_too_big, attr_to_set_result):
768 py_db.post_method_as_internal_command(

Callers 1

Calls 1

Tested by

no test coverage detected