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

Method bpprint

tools/python-3.11.9-amd64/Lib/bdb.py:732–740  ·  view source on GitHub ↗

Print the output of bpformat(). The optional out argument directs where the output is sent and defaults to standard output.

(self, out=None)

Source from the content-addressed store, hash-verified

730 self.enabled = False
731
732 def bpprint(self, out=None):
733 """Print the output of bpformat().
734
735 The optional out argument directs where the output is sent
736 and defaults to standard output.
737 """
738 if out is None:
739 out = sys.stdout
740 print(self.bpformat(), file=out)
741
742 def bpformat(self):
743 """Return a string with information about the breakpoint.

Callers

nothing calls this directly

Calls 2

bpformatMethod · 0.95
printFunction · 0.50

Tested by

no test coverage detected