MCPcopy Index your code
hub / github.com/python/cpython / bpprint

Method bpprint

Lib/bdb.py:1036–1044  ·  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

1034 self.enabled = False
1035
1036 def bpprint(self, out=None):
1037 """Print the output of bpformat().
1038
1039 The optional out argument directs where the output is sent
1040 and defaults to standard output.
1041 """
1042 if out is None:
1043 out = sys.stdout
1044 print(self.bpformat(), file=out)
1045
1046 def bpformat(self):
1047 """Return a string with information about the breakpoint.

Callers

nothing calls this directly

Calls 1

bpformatMethod · 0.95

Tested by

no test coverage detected