We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03b2271 commit cf86292Copy full SHA for cf86292
1 file changed
bpdb/debugger.py
@@ -31,7 +31,12 @@ def __init__(self):
31
pdb.Pdb.__init__(self)
32
self.rcLines = []
33
self.prompt = '(BPdb) '
34
+ self.intro = 'Use "B" to enter BPython, Ctrl-d to exit it.'
35
36
+ def postloop(self):
37
+ # We only want to show the intro message once.
38
+ #self.intro = None
39
+ pdb.Pdb.postloop(self)
40
41
### cmd.Cmd commands
42
0 commit comments