v0.9.7.1 is missing documentation on how to start bpdb even though it mentions it in the CHANGELOG.
Just adding a quick section as below would probably do:
To enable bpython support within pdb, start pdb with the following code:
import bpdb; bpdb.set_trace()
This will drop you into Bpdb instead of pdb, which works exactly like pdb except that you can additionally start bpython at the current stack frame by issuing the command 'Bpython' or 'B'.
You can exit bpython with ^D to return to bpdb.
Reactions are currently unavailable
v0.9.7.1 is missing documentation on how to start bpdb even though it mentions it in the CHANGELOG.
Just adding a quick section as below would probably do:
To enable bpython support within pdb, start pdb with the following code:
import bpdb; bpdb.set_trace()
This will drop you into Bpdb instead of pdb, which works exactly like pdb except that you can additionally start bpython at the current stack frame by issuing the command 'Bpython' or 'B'.
You can exit bpython with ^D to return to bpdb.