MCPcopy Index your code
hub / github.com/RustPython/RustPython / get_break

Method get_break

Lib/bdb.py:797–801  ·  view source on GitHub ↗

Return True if there is a breakpoint for filename:lineno.

(self, filename, lineno)

Source from the content-addressed store, hash-verified

795 return bp
796
797 def get_break(self, filename, lineno):
798 """Return True if there is a breakpoint for filename:lineno."""
799 filename = self.canonic(filename)
800 return filename in self.breaks and \
801 lineno in self.breaks[filename]
802
803 def get_breaks(self, filename, lineno):
804 """Return all breakpoints for filename:lineno.

Callers 1

dispatch_lineMethod · 0.95

Calls 1

canonicMethod · 0.95

Tested by

no test coverage detected