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

Class Jinja2LineBreakpoint

pydevd_plugins/jinja2_debug.py:11–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9
10
11class Jinja2LineBreakpoint(LineBreakpointWithLazyValidation):
12 def __init__(
13 self, canonical_normalized_filename, breakpoint_id, line, condition, func_name, expression, hit_condition=None, is_logpoint=False
14 ):
15 self.canonical_normalized_filename = canonical_normalized_filename
16 LineBreakpointWithLazyValidation.__init__(
17 self, breakpoint_id, line, condition, func_name, expression, hit_condition=hit_condition, is_logpoint=is_logpoint
18 )
19
20 def __str__(self):
21 return "Jinja2LineBreakpoint: %s-%d" % (self.canonical_normalized_filename, self.line)
22
23
24class _Jinja2ValidationInfo(ValidationInfo):

Callers 1

add_line_breakpointFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected