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

Class DjangoLineBreakpoint

pydevd_plugins/django_debug.py:26–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24
25
26class DjangoLineBreakpoint(LineBreakpointWithLazyValidation):
27 def __init__(
28 self, canonical_normalized_filename, breakpoint_id, line, condition, func_name, expression, hit_condition=None, is_logpoint=False
29 ):
30 self.canonical_normalized_filename = canonical_normalized_filename
31 LineBreakpointWithLazyValidation.__init__(
32 self, breakpoint_id, line, condition, func_name, expression, hit_condition=hit_condition, is_logpoint=is_logpoint
33 )
34
35 def __str__(self):
36 return "DjangoLineBreakpoint: %s-%d" % (self.canonical_normalized_filename, self.line)
37
38
39class _DjangoValidationInfo(ValidationInfo):

Callers 1

add_line_breakpointFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected