MCPcopy Create free account
hub / github.com/bpython/bpython / __init__

Method __init__

bpdb/debugger.py:30–33  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected