Print the output of bpformat(). The optional out argument directs where the output is sent and defaults to standard output.
(self, out=None)
| 1043 | self.enabled = False |
| 1044 | |
| 1045 | def bpprint(self, out=None): |
| 1046 | """Print the output of bpformat(). |
| 1047 | |
| 1048 | The optional out argument directs where the output is sent |
| 1049 | and defaults to standard output. |
| 1050 | """ |
| 1051 | if out is None: |
| 1052 | out = sys.stdout |
| 1053 | print(self.bpformat(), file=out) |
| 1054 | |
| 1055 | def bpformat(self): |
| 1056 | """Return a string with information about the breakpoint. |