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 4613f39 commit 349a1e7Copy full SHA for 349a1e7
doc/sphinx/source/bpaste.rst
@@ -1,4 +1,4 @@
1
-.. _authors:
+.. _bpaste:
2
3
bpaste
4
======
doc/sphinx/source/bpdb.rst
@@ -0,0 +1,17 @@
+.. _bpdb:
+
+bpdb
+====
5
6
+To enable bpython support within pdb, start pdb with the following code:
7
8
+.. code-block:: python
9
10
+ import bpdb
11
+ bpdb.set_trace()
12
13
+This will drop you into bpdb instead of pdb, which works exactly like pdb except
14
+that you can additionally start bpython at the current stack frame by issuing
15
+the command `Bpython` or `B`.
16
17
+You can exit bpython with `^D` to return to bpdb.
doc/sphinx/source/index.rst
@@ -26,3 +26,4 @@ Contents:
26
sourcecode
27
28
tips
29
+ bpdb
0 commit comments