MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / get_break

Method get_break

tools/python-3.11.9-amd64/Lib/bdb.py:494–498  ·  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

492 return bp
493
494 def get_break(self, filename, lineno):
495 """Return True if there is a breakpoint for filename:lineno."""
496 filename = self.canonic(filename)
497 return filename in self.breaks and \
498 lineno in self.breaks[filename]
499
500 def get_breaks(self, filename, lineno):
501 """Return all breakpoints for filename:lineno.

Callers

nothing calls this directly

Calls 1

canonicMethod · 0.95

Tested by

no test coverage detected