Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

squarecapadmin / bpython   python

Repository URL to install this package:

Version: 0.12 

/ doc / sphinx / source / bpdb.rst

.. _bpdb:

bpdb
====

To enable bpython support within pdb, start pdb with the following code:

.. code-block:: python

    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.