Print the output of bpformat(). The optional out argument directs where the output is sent and defaults to standard output.
(self, out=None)
| 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. |