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