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

Method get_breakpoints

_pydevd_bundle/pydevd_plugin_utils.py:87–94  ·  view source on GitHub ↗

:param breakpoint_type: 'django-line', 'jinja2-line'

(self, py_db, breakpoint_type)

Source from the content-addressed store, hash-verified

85 plugin.remove_all_exception_breakpoints(py_db)
86
87 def get_breakpoints(self, py_db, breakpoint_type):
88 """
89 :param breakpoint_type: 'django-line', 'jinja2-line'
90 """
91 for plugin in self.active_plugins:
92 ret = plugin.get_breakpoints(py_db, breakpoint_type)
93 if ret:
94 return ret
95
96 def can_skip(self, py_db, frame):
97 for plugin in self.active_plugins:

Callers 1

remove_breakpointMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected