Metadata-Version: 2.1
Name: backports.pdb
Version: 1.1
Summary: Backport of pdb from Python 3.7
Home-page: https://github.com/jaraco/backports.pdb
Author: Jason R. Coombs
Author-email: jaraco@jaraco.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Requires-Python: >=2.7
Provides-Extra: docs
Requires-Dist: sphinx ; extra == 'docs'
Requires-Dist: jaraco.packaging (>=3.2) ; extra == 'docs'
Requires-Dist: rst.linker (>=1.9) ; extra == 'docs'
Provides-Extra: testing
Requires-Dist: pytest (!=3.7.3,>=3.5) ; extra == 'testing'
Requires-Dist: pytest-checkdocs ; extra == 'testing'
Requires-Dist: pytest-flake8 ; extra == 'testing'

.. image:: https://img.shields.io/pypi/v/backports.pdb.svg
   :target: https://pypi.org/project/backports.pdb

.. image:: https://img.shields.io/pypi/pyversions/backports.pdb.svg

.. image:: https://img.shields.io/travis/jaraco/backports.pdb/master.svg
   :target: https://travis-ci.org/jaraco/backports.pdb

.. .. image:: https://img.shields.io/appveyor/ci/jaraco/skeleton/master.svg
..    :target: https://ci.appveyor.com/project/jaraco/skeleton/branch/master

.. image:: https://readthedocs.org/projects/backportspdb/badge/?version=latest
   :target: https://backportspdb.readthedocs.io/en/latest/?badge=latest


Backport of `pdb from Python 3.7
<https://docs.python.org/3.7/library/pdb.html>`_::

    from backports import pdb

Including support for the ``-m`` option::

    $ python -m backports.pdb -m mymodule


