(self, *args, **kwargs)
| 28 | """PDB with BPython support.""" |
| 29 | |
| 30 | def __init__(self, *args, **kwargs) -> None: |
| 31 | super().__init__(*args, **kwargs) |
| 32 | self.prompt = "(BPdb) " |
| 33 | self.intro = 'Use "B" to enter bpython, Ctrl-d to exit it.' |
| 34 | |
| 35 | def postloop(self) -> None: |
| 36 | # We only want to show the intro message once. |
nothing calls this directly
no outgoing calls
no test coverage detected