{ "info": { "author": "Godefroid Chapelle", "author_email": "gotcha@bubblenet.be", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: BSD License", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Topic :: Software Development :: Debuggers" ], "description": "IPython `pdb`\n=============\n\n.. image:: https://travis-ci.org/gotcha/ipdb.png?branch=master\n :target: https://travis-ci.org/gotcha/ipdb\n.. image:: https://codecov.io/gh/gotcha/ipdb/branch/master/graphs/badge.svg?style=flat\n :target: https://codecov.io/gh/gotcha/ipdb?branch=master\n\nUse\n---\n\nipdb exports functions to access the IPython_ debugger, which features\ntab completion, syntax highlighting, better tracebacks, better introspection\nwith the same interface as the `pdb` module.\n\nExample usage:\n\n.. code-block:: python\n\n import ipdb\n ipdb.set_trace()\n ipdb.set_trace(context=5) # will show five lines of code\n # instead of the default three lines\n ipdb.pm()\n ipdb.run('x[0] = 3')\n result = ipdb.runcall(function, arg0, arg1, kwarg='foo')\n result = ipdb.runeval('f(1,2) - 3')\n\nThe post-mortem function, ``ipdb.pm()``, is equivalent to the magic function\n``%debug``.\n\n.. _IPython: http://ipython.org\n\nIf you install ``ipdb`` with a tool which supports ``setuptools`` entry points,\nan ``ipdb`` script is made for you. You can use it to debug your python 2 scripts like\n\n::\n\n $ bin/ipdb mymodule.py\n\nAnd for python 3\n\n::\n\n $ bin/ipdb3 mymodule.py\n\nAlternatively with Python 2.7 only, you can also use\n\n::\n\n $ python -m ipdb mymodule.py\n\nYou can also enclose code with the ``with`` statement to launch ipdb if an exception is raised:\n\n.. code-block:: python\n\n from ipdb import launch_ipdb_on_exception\n\n with launch_ipdb_on_exception():\n [...]\n\n.. warning::\n Context managers were introduced in Python 2.5.\n Adding a context manager implies dropping Python 2.4 support.\n Use ``ipdb==0.6`` with 2.4.\n\n.. warning::\n Using ``from future import print_function`` for Python 3 compat implies dropping Python 2.5 support.\n Use ``ipdb<=0.8`` with 2.5.\n\nIssues with ``stdout``\n----------------------\n\nSome tools, like ``nose`` fiddle with ``stdout``.\n\nUntil ``ipdb==0.9.4``, we tried to guess when we should also\nfiddle with ``stdout`` to support those tools.\nHowever, all strategies tried until 0.9.4 have proven brittle.\n\nIf you use ``nose`` or another tool that fiddles with ``stdout``, you should\nexplicitely ask for ``stdout`` fiddling by using ``ipdb`` like this\n\n.. code-block:: python\n\n import ipdb\n ipdb.sset_trace()\n ipdb.spm()\n\n from ipdb import slaunch_ipdb_on_exception\n with slaunch_ipdb_on_exception():\n [...]\n\n\nDevelopment\n-----------\n\n``ipdb`` source code and tracker are at https://github.com/gotcha/ipdb.\n\nPull requests should take care of updating the changelog ``HISTORY.txt``.\n\nThird-party support\n-------------------\n\nProducts.PDBDebugMode\n+++++++++++++++++++++\n\nZope2 Products.PDBDebugMode_ uses ``ipdb``, if available, in place of ``pdb``.\n\n.. _Products.PDBDebugMode: http://pypi.python.org/pypi/Products.PDBDebugMode\n\niw.debug\n++++++++\n\niw.debug_ allows you to trigger an ``ipdb`` debugger on any published object\nof a Zope2 application.\n\n.. _iw.debug: http://pypi.python.org/pypi/iw.debug\n\nipdbplugin\n++++++++++\n\nipdbplugin_ is a nose_ test runner plugin that also uses the IPython debugger\ninstead of ``pdb``. (It does not depend on ``ipdb`` anymore).\n\n.. _ipdbplugin: http://pypi.python.org/pypi/ipdbplugin\n.. _nose: http://readthedocs.org/docs/nose\n\n\nChangelog\n=========\n\n0.12.2 (2019-07-30)\n-------------------\n\n- Avoid emitting term-title bytes\n [steinnes]\n\n\n0.12.1 (2019-07-26)\n-------------------\n\n- Fix --help \n [native-api]\n\n\n0.12 (2019-03-20)\n-----------------\n\n- Drop support for Python 3.3.x\n [bmw]\n- Stop deprecation warnings from being raised when IPython >= 5.1 is used.\n Support for IPython < 5.1 has been dropped.\n [bmw]\n\n\n0.11 (2018-02-15)\n-----------------\n\n- Simplify loading IPython and getting information from it.\n Drop support for python 2.6\n Drop support for IPython < 5.0.0\n [takluyver]\n\n\n0.10.3 (2017-04-22)\n-------------------\n\n- For users using python 2.6, do not install IPython >= 2.0.0.\n And for users using python 2.7, do not install IPython >= 6.0.0.\n [vphilippon]\n- Drop support for python 3.2.\n [vphilippon]\n- Command line usage consistent with pdb - Add argument commands\n [zvodd]\n\n\n0.10.2 (2017-01-25)\n-------------------\n\n- Ask IPython which debugger class to use.\n Closes https://github.com/gotcha/ipdb/issues/105\n [gnebehay, JBKahn] \n\n- ipdb.set_trace() does not ignore context arg anymore.\n Closes https://github.com/gotcha/ipdb/issues/93.\n [gnebehay, Garrett-R]\n\n\n0.10.1 (2016-06-14)\n-------------------\n\n- Support IPython 5.0.\n [ngoldbaum]\n\n\n0.10.0 (2016-04-29)\n-------------------\n\n- Stop trying to magically guess when stdout needs to be captured.\n Like needed by `nose`.\n Rather, provide a set of function that can be called explicitely when needed.\n [gotcha]\n\n- drop support of IPython before 0.10.2\n\n\n0.9.4 (2016-04-29)\n------------------\n\n- Fix Restart error when using `python -m ipdb`\n Closes https://github.com/gotcha/ipdb/issues/93.\n [gotcha]\n\n\n0.9.3 (2016-04-15)\n------------------\n\n- Don't require users to pass a traceback to post_mortem.\n [Wilfred]\n\n\n0.9.2 (2016-04-15)\n------------------\n\n- Closes https://github.com/gotcha/ipdb/issues/93.\n [gotcha]\n\n\n0.9.1 (2016-04-12)\n------------------\n\n- Reset ``sys.modules['__main__']`` to original value.\n Closes https://github.com/gotcha/ipdb/issues/85\n [gotcha]\n\n- Fix support of IPython versions 0.x\n [asivokon]\n\n\n0.9.0 (2016-02-22)\n------------------\n\n- Switch to revised BSD license (with approval of all contributors).\n Closes https://github.com/gotcha/ipdb/issues/68\n [lebedov, gotcha]\n\n0.8.3 (2016-02-17)\n------------------\n\n- Don't pass sys.argv to IPython for configuration.\n [emulbreh]\n\n\n0.8.2 (2016-02-15)\n------------------\n\n- Fix lexical comparison for version numbers.\n [sas23]\n\n- Allow configuring how many lines of code context are displayed\n by `set_trace`\n [JamshedVesuna]\n\n- If an instance of IPython is already running its configuration will be\n loaded.\n [IxDay]\n\n\n0.8.1 (2015-06-03)\n------------------\n\n- Make Nose support less invasive.\n Closes https://github.com/gotcha/ipdb/issues/52\n Closes https://github.com/gotcha/ipdb/issues/31\n [blink1073, gotcha]\n\n- Fix for post_mortem in context manager.\n Closes https://github.com/gotcha/ipdb/issues/20\n [omergertel]\n\n\n0.8 (2013-09-19)\n----------------\n\n- More Python 3 compatibility; implies dropping Python 2.5 support.\n Closes https://github.com/gotcha/ipdb/issues/37\n [gotcha]\n\n\n0.7.1 (2013-09-19)\n------------------\n\n- IPython 1.0 compatibility.\n Closes https://github.com/gotcha/ipdb/issues/44\n [pgularski]\n\n- Index into version_info in setup.py for Python 2.6 compatibility.\n [kynan]\n\n- Add Travis CI configuration.\n [kynan]\n\n0.7 (2012-07-06)\n----------------\n\n- Add ``launch_ipdb_on_exception`` context manager. Implies dropping Python 2.4 support.\n [Psycojoker]\n\n- Wrap sys.excepthook only once.\n [marciomazza]\n\n- Add GPL file and refer in headers.\n [stan3]\n\n- Python 3 support.\n [Piet Delport]\n\n- Basic tests.\n [msabramo]\n\n- Added the functions ``runcall``, ``runeval`` and ``run``.\n [dimasad]\n\n\n0.6.1 (2011-10-17)\n------------------\n\n- State dependency on IPython later or equal to 0.10.\n [gotcha]\n\n\n0.6 (2011-09-01)\n----------------\n\n- Add setuptools ``console_scripts`` entry point.\n [akrito, gotcha] \n\n- Nose support.\n Closes https://github.com/gotcha/ipdb/issues/8\n [akaihola, gotcha]\n\n\n0.5 (2011-08-05)\n----------------\n\n- IPython 0.11 support.\n [lebedov]\n\n\n0.4 (2011-06-13)\n----------------\n\n- When used from IPython, use its colors.\n Closes https://github.com/gotcha/ipdb/issues/1\n [gotcha]\n\n- Fixed errors when exiting with \"q\". \n [gotcha]\n\n- Allow use of ``python -m ipdb mymodule.py``.\n Python 2.7 only. \n Closes https://github.com/gotcha/ipdb/issues/3 \n [gotcha]\n\n- Fixed post_mortem when the traceback is None.\n [maurits]\n\n\n0.3 (2011-01-16)\n----------------\n\n- Add ``post_mortem()`` for ``Products.PDBDebugMode`` support.\n [Jean Jordaan]\n\n- Moved to github.com.\n\n\n0.2 (2010-10-20)\n----------------\n\n- Added ``pm()``.\n [Paulo Benedict Ang]\n\n\n0.1 (2010-04-26)\n----------------\n\n- First \"non dev\" release.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/gotcha/ipdb", "keywords": "pdb ipython", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "ipdb", "package_url": "https://pypi.org/project/ipdb/", "platform": "", "project_url": "https://pypi.org/project/ipdb/", "project_urls": { "Homepage": "https://github.com/gotcha/ipdb" }, "release_url": "https://pypi.org/project/ipdb/0.12.2/", "requires_dist": null, "requires_python": ">=2.7", "summary": "IPython-enabled pdb", "version": "0.12.2" }, "last_serial": 5608586, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "694a74ed29ff8aafc86f6d82669763b1", "sha256": "b69ac2cf3101a008cc73d177db551ad04ccbaffd34b76810d5af29a8867c97bd" }, "downloads": -1, "filename": "ipdb-0.1.tar.gz", "has_sig": false, "md5_digest": "694a74ed29ff8aafc86f6d82669763b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1489, "upload_time": "2010-04-26T16:40:36", "url": "https://files.pythonhosted.org/packages/7d/2b/04d05aafa6c07c8823a8b0b644855131f8a9e4c0024f6d14fb7b8a83a8ff/ipdb-0.1.tar.gz" } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "765ba5e7b325b7986672f800f3e01e77", "sha256": "59b39a918a654aecad017a6f1676007790752a45d64c35030507f45279a469e3" }, "downloads": -1, "filename": "ipdb-0.10.0.tar.gz", "has_sig": false, "md5_digest": "765ba5e7b325b7986672f800f3e01e77", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8543, "upload_time": "2016-04-29T16:21:29", "url": "https://files.pythonhosted.org/packages/c5/6f/b0836d063960a6e7b23099d6803f8bdd289c53d0f06b21a184a9a1974f4c/ipdb-0.10.0.tar.gz" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "4aeab65f633ddc98ebdb5eebf08dc713", "sha256": "bb2948e726dbfb2687f4a582088b3f170b2556ba8e54ae1231c783c97e99ec87" }, "downloads": -1, "filename": "ipdb-0.10.1.tar.gz", "has_sig": false, "md5_digest": "4aeab65f633ddc98ebdb5eebf08dc713", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8595, "upload_time": "2016-06-14T21:08:07", "url": "https://files.pythonhosted.org/packages/eb/0a/0a37dc19572580336ad3813792c0d18c8d7117c2d66fc63c501f13a7a8f8/ipdb-0.10.1.tar.gz" } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "75aad4924214a8526e38aefd4d3099b1", "sha256": "fffc45b615e46eb75becbd88a30c69c75e7164ecd0122f2c78579b4dfa41b8c9" }, "downloads": -1, "filename": "ipdb-0.10.2.tar.gz", "has_sig": false, "md5_digest": "75aad4924214a8526e38aefd4d3099b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8827, "upload_time": "2017-01-25T13:55:21", "url": "https://files.pythonhosted.org/packages/e1/fa/446cc6443c0dd5bcce55af12b73e1a561b330913a3792d4037f4aa654ed2/ipdb-0.10.2.tar.gz" } ], "0.10.3": [ { "comment_text": "", "digests": { "md5": "def1f6ac075d54bdee07e6501263d4fa", "sha256": "9ea256b4280fbe12840fb9dfc3ce498c6c6de03352eca293e4400b0dfbed2b28" }, "downloads": -1, "filename": "ipdb-0.10.3.tar.gz", "has_sig": false, "md5_digest": "def1f6ac075d54bdee07e6501263d4fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9356, "upload_time": "2017-04-22T09:30:56", "url": "https://files.pythonhosted.org/packages/ad/cc/0e7298e1fbf2efd52667c9354a12aa69fb6f796ce230cca03525051718ef/ipdb-0.10.3.tar.gz" } ], "0.11": [ { "comment_text": "", "digests": { "md5": "497ee9e0d120c83f7d127d3d1362d1ac", "sha256": "7081c65ed7bfe7737f83fa4213ca8afd9617b42ff6b3f1daf9a3419839a2a00a" }, "downloads": -1, "filename": "ipdb-0.11.tar.gz", "has_sig": false, "md5_digest": "497ee9e0d120c83f7d127d3d1362d1ac", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 9083, "upload_time": "2018-02-15T11:43:45", "url": "https://files.pythonhosted.org/packages/80/fe/4564de08f174f3846364b3add8426d14cebee228f741c27e702b2877e85b/ipdb-0.11.tar.gz" } ], "0.12": [ { "comment_text": "", "digests": { "md5": "c20649a1867db5279f802135a377eb9f", "sha256": "dce2112557edfe759742ca2d0fee35c59c97b0cc7a05398b791079d78f1519ce" }, "downloads": -1, "filename": "ipdb-0.12.tar.gz", "has_sig": false, "md5_digest": "c20649a1867db5279f802135a377eb9f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 9211, "upload_time": "2019-03-20T10:22:48", "url": "https://files.pythonhosted.org/packages/6d/43/c3c2e866a8803e196d6209595020a4a6db1a3c5d07c01455669497ae23d0/ipdb-0.12.tar.gz" } ], "0.12.1": [ { "comment_text": "", "digests": { "md5": "eedeb3f4af6df55cbcde3ac54bc4df1a", "sha256": "68019ef3ae338f9d5b0e6a2b7f353ea7377c2f4e0437776d6072c55cb708e7fa" }, "downloads": -1, "filename": "ipdb-0.12.1.tar.gz", "has_sig": false, "md5_digest": "eedeb3f4af6df55cbcde3ac54bc4df1a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 9306, "upload_time": "2019-07-26T11:22:58", "url": "https://files.pythonhosted.org/packages/87/a7/ef7d90574d641b61ce15a7cb578c7f72fef076deaa4c435aded3f3328519/ipdb-0.12.1.tar.gz" } ], "0.12.2": [ { "comment_text": "", "digests": { "md5": "5c2c1d96d4c4774e29f5f0c329246a1b", "sha256": "473fdd798a099765f093231a8b1fabfa95b0b682fce12de0c74b61a4b4d8ee57" }, "downloads": -1, "filename": "ipdb-0.12.2.tar.gz", "has_sig": false, "md5_digest": "5c2c1d96d4c4774e29f5f0c329246a1b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 9368, "upload_time": "2019-07-30T16:11:18", "url": "https://files.pythonhosted.org/packages/df/78/3d0d7253dc85549db182cbe4b43b30c506c84008fcd39898122c9b6306a9/ipdb-0.12.2.tar.gz" } ], "0.1dev-r1556": [ { "comment_text": "", "digests": { "md5": "fef5a0554e80da3cf04601abffbb06d0", "sha256": "746af7462f801dbf46c9ff91a6e8c6b40642565895d75cec88d090263643f9f5" }, "downloads": -1, "filename": "ipdb-0.1dev_r1556-py2.4.egg", "has_sig": false, "md5_digest": "fef5a0554e80da3cf04601abffbb06d0", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 1853, "upload_time": "2007-11-22T11:48:59", "url": "https://files.pythonhosted.org/packages/a9/5c/a308d5009fbc3c10ae5aa2e589f3af86c3c3c816f8c333f3d42639208317/ipdb-0.1dev_r1556-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "d834e2659231f276049a965fbcd41d44", "sha256": "35a737035a08b27d5c40a10065043ab56a0ec365f2edafa81cc083c173f2b9ae" }, "downloads": -1, "filename": "ipdb-0.1dev-r1556.tar.gz", "has_sig": false, "md5_digest": "d834e2659231f276049a965fbcd41d44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1288, "upload_time": "2007-11-22T11:48:59", "url": "https://files.pythonhosted.org/packages/27/36/63c8f73c4d6185323d261b4b5b170d007833b429461729648bf5d6dc923d/ipdb-0.1dev-r1556.tar.gz" } ], "0.1dev-r1713": [ { "comment_text": "", "digests": { "md5": "bf68c7b3ee9e5b723d59fabd2dcf6309", "sha256": "bf713e4f7f3b8d50d82efdbcc1c39ef309959ee2ca13fa2ba5cd8bfd4c1e31bd" }, "downloads": -1, "filename": "ipdb-0.1dev_r1713-py2.4.egg", "has_sig": false, "md5_digest": "bf68c7b3ee9e5b723d59fabd2dcf6309", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 1905, "upload_time": "2007-11-22T11:53:18", "url": "https://files.pythonhosted.org/packages/14/dd/10f6d300c6061ee1de2ac3cb5448c370b9eacb2b0a23cbfcf3826402adf8/ipdb-0.1dev_r1713-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "5301c69ed63f913ba3f760b2842410a4", "sha256": "f0d75ee6b2a4a9ff15af82736f8149c9a479032f71005bf5c40431638e1af462" }, "downloads": -1, "filename": "ipdb-0.1dev-r1713.tar.gz", "has_sig": false, "md5_digest": "5301c69ed63f913ba3f760b2842410a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1341, "upload_time": "2007-11-22T11:53:18", "url": "https://files.pythonhosted.org/packages/20/32/313e169db34b2b5a036c8bf93c37a64b22dbb6f2720e7b7db1fe0eb130ad/ipdb-0.1dev-r1713.tar.gz" } ], "0.1dev-r1714": [ { "comment_text": "", "digests": { "md5": "1601402563a9b59a4369297c1f2f16f3", "sha256": "0f49e68950e2a2c95342d2c98b3bd102ed316bdffd82476037ec14337c9240bf" }, "downloads": -1, "filename": "ipdb-0.1dev_r1714-py2.4.egg", "has_sig": false, "md5_digest": "1601402563a9b59a4369297c1f2f16f3", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 2046, "upload_time": "2007-11-22T12:00:09", "url": "https://files.pythonhosted.org/packages/79/e5/1c8755bac3b55bef4e6bf9a08023614e62ced90dd5b71cf9c540fcc92d89/ipdb-0.1dev_r1714-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "6821c4566330811dfe4493138aaacdcf", "sha256": "58b2d01f02f4d9b841243f0b5b0bfdedc471c74ab6ef85f9289da59a1a897871" }, "downloads": -1, "filename": "ipdb-0.1dev-r1714.tar.gz", "has_sig": false, "md5_digest": "6821c4566330811dfe4493138aaacdcf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1431, "upload_time": "2007-11-22T12:00:09", "url": "https://files.pythonhosted.org/packages/6f/18/f21646717909fe4978b8474d8b3f8db1af9609679a8f187283a4429e75be/ipdb-0.1dev-r1714.tar.gz" } ], "0.1dev-r1716": [ { "comment_text": "", "digests": { "md5": "dc241bf1a82a6e4296652d54ae4834e0", "sha256": "1b8a2f2a81e6a47504407135eca0679cbcd0bf403ff95b9a30942d89868ecda0" }, "downloads": -1, "filename": "ipdb-0.1dev_r1716-py2.4.egg", "has_sig": false, "md5_digest": "dc241bf1a82a6e4296652d54ae4834e0", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 2179, "upload_time": "2007-11-22T20:39:44", "url": "https://files.pythonhosted.org/packages/11/54/4d9acfe3e8b4a58424f1a983f1de509c29acb0e6440a16861284a057a36f/ipdb-0.1dev_r1716-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "21354e9d4c7fd87908d543418de0d131", "sha256": "7822d36517dccd26d7237b1d949a76339a2aca7d3ab99e2754b100d48ca1840a" }, "downloads": -1, "filename": "ipdb-0.1dev-r1716.tar.gz", "has_sig": false, "md5_digest": "21354e9d4c7fd87908d543418de0d131", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1471, "upload_time": "2007-11-22T20:39:43", "url": "https://files.pythonhosted.org/packages/46/87/7af0a6665ece3a8d50aeeabf8a7c863a618c4fa75a90bff0a038616c4642/ipdb-0.1dev-r1716.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "76a4b58633232cf6654d5a278230af54", "sha256": "3519c798bab9fb852ab7444285734735e1cb0686e807c326f4babd63043178b3" }, "downloads": -1, "filename": "ipdb-0.2.tar.gz", "has_sig": false, "md5_digest": "76a4b58633232cf6654d5a278230af54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1628, "upload_time": "2010-10-20T21:53:04", "url": "https://files.pythonhosted.org/packages/aa/ac/b77764bd9d4add21be519e83a7bd620346e08656183e7bdc4ce150c74886/ipdb-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "2ccf2eca7b8c1cd4b47b231d318bbdc9", "sha256": "ac5942b03e61a34be920f07c1728cf53d2755c2786145d7783e8a327bcd768ec" }, "downloads": -1, "filename": "ipdb-0.3.tar.gz", "has_sig": false, "md5_digest": "2ccf2eca7b8c1cd4b47b231d318bbdc9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1766, "upload_time": "2011-01-16T19:56:13", "url": "https://files.pythonhosted.org/packages/29/97/e9c93a84d6fef538c60350e99bfaee7e814e7d73bbb6a99165365335ea64/ipdb-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "305e210a70cb603d3c2cf8e7492c5719", "sha256": "7ab439e9f15f324d218a0b36a55d8563f3415e81b986843494f289b4171bcdbe" }, "downloads": -1, "filename": "ipdb-0.4.tar.gz", "has_sig": false, "md5_digest": "305e210a70cb603d3c2cf8e7492c5719", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3105, "upload_time": "2011-06-13T17:00:53", "url": "https://files.pythonhosted.org/packages/48/d4/b57e6b87b39bd51d69739727a310f1f4329d833746f2d4edf64f2a6ee049/ipdb-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "5d9da7bac4f139b9bb8ec8cc19a44e2e", "sha256": "12fb75a350c8334fbd9462a060c8164b94c19f44d83b9f5482af13a3c51e0ff2" }, "downloads": -1, "filename": "ipdb-0.5.tar.gz", "has_sig": false, "md5_digest": "5d9da7bac4f139b9bb8ec8cc19a44e2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3269, "upload_time": "2011-08-05T07:51:28", "url": "https://files.pythonhosted.org/packages/ad/50/e02c6bdd484196e05998d696f592c2416ff7a90473eee2bb70b851639760/ipdb-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "4a4b32e64c043522368c7871d8f50b6d", "sha256": "c3bca2e10e89254ee5f728a707226383a7b5deecdc406c5792a183d66eef6337" }, "downloads": -1, "filename": "ipdb-0.6.tar.gz", "has_sig": false, "md5_digest": "4a4b32e64c043522368c7871d8f50b6d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3786, "upload_time": "2011-09-01T10:18:48", "url": "https://files.pythonhosted.org/packages/5c/46/b8d3b2a20be2b0426ccd3b994f21035474c2e2e0a9c89491bd47443e474d/ipdb-0.6.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "6aeacd76e9d0da20c86d459531e9537b", "sha256": "bdbb036c5794d75a74db01b119de708676bdb5e36290258087427d3832266eaa" }, "downloads": -1, "filename": "ipdb-0.6.1.tar.gz", "has_sig": false, "md5_digest": "6aeacd76e9d0da20c86d459531e9537b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4131, "upload_time": "2011-10-17T10:14:07", "url": "https://files.pythonhosted.org/packages/b3/f4/5c9ef1fac1ced78cfd935100c31cf67a4b7231c96c48bcfe2829c3f6dc1c/ipdb-0.6.1.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "d879f9b2b0f26e0e999809585dcaec61", "sha256": "aedcc8190067f7abc404b95845ca5c8b1f5bde68c11be08939ddde0e4552a4cf" }, "downloads": -1, "filename": "ipdb-0.7.tar.gz", "has_sig": false, "md5_digest": "d879f9b2b0f26e0e999809585dcaec61", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12375, "upload_time": "2012-07-06T14:18:52", "url": "https://files.pythonhosted.org/packages/b1/12/bc69441314b190742d5d14450b9262589e0f111c2adff2f44c755781e441/ipdb-0.7.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "edf9304381763ab626eeb8f2d6ccc4c7", "sha256": "00cd33293ef4768affdffca181c2bd7d14503588f9b0506c274c0fb571e16f94" }, "downloads": -1, "filename": "ipdb-0.7.1.zip", "has_sig": false, "md5_digest": "edf9304381763ab626eeb8f2d6ccc4c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19998, "upload_time": "2013-09-19T13:33:28", "url": "https://files.pythonhosted.org/packages/bc/30/65d1fa1431d70aa5c18d16ccd66adcf90a818cd1737c40b8ebcb86fab203/ipdb-0.7.1.zip" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "96dca0712efa01aa5eaf6b22071dd3ed", "sha256": "0d4a33f38e667a0c80ec1a5a0e468fe58e5cdc61cb8f4077b1024b85fe7b7117" }, "downloads": -1, "filename": "ipdb-0.8.zip", "has_sig": false, "md5_digest": "96dca0712efa01aa5eaf6b22071dd3ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20204, "upload_time": "2013-09-19T15:24:28", "url": "https://files.pythonhosted.org/packages/f0/25/d7dd430ced6cd8dc242a933c8682b5dbf32eb4011d82f87e34209e5ec845/ipdb-0.8.zip" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "dbaded677eae99ed391fccc83e737c4f", "sha256": "1763d1564113f5eb89df77879a8d3213273c4d7ff93dcb37a3070cdf0c34fd7c" }, "downloads": -1, "filename": "ipdb-0.8.1.zip", "has_sig": false, "md5_digest": "dbaded677eae99ed391fccc83e737c4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20522, "upload_time": "2015-06-03T10:21:19", "url": "https://files.pythonhosted.org/packages/cb/ed/cf9b80923dfee3b861d18c43e68793e52a81e51a7534f81c665e71b1642d/ipdb-0.8.1.zip" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "b6cf552fd772fb117c5cd96e337e4b68", "sha256": "9ac7193658c787321c79b366a3f415f968a215b4d7647508311415944762b727" }, "downloads": -1, "filename": "ipdb-0.8.2.tar.gz", "has_sig": false, "md5_digest": "b6cf552fd772fb117c5cd96e337e4b68", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13623, "upload_time": "2016-02-15T14:18:34", "url": "https://files.pythonhosted.org/packages/3c/b1/d19f0843418a6270dbf1b5380c11dbd5501e93b3d99888c2ea61cbb7f702/ipdb-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "6cf953a17d276bf56788392460585583", "sha256": "aa329b7fed373b78778fbffc53245761a94e0648086b7924e92048a0467e4763" }, "downloads": -1, "filename": "ipdb-0.8.3.tar.gz", "has_sig": false, "md5_digest": "6cf953a17d276bf56788392460585583", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13686, "upload_time": "2016-02-17T14:26:04", "url": "https://files.pythonhosted.org/packages/52/c2/287220b4f66738bad467e71ffe203c097e0aaca1c6dd798e3b8b1a20f5be/ipdb-0.8.3.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "3d418d7c44d876e8b7879d926e574e9d", "sha256": "efdf16f3ac7b9f14f6ad6d50e95034e03124a65d30d8b24ed20f0e34aa61e5ef" }, "downloads": -1, "filename": "ipdb-0.9.0.tar.gz", "has_sig": false, "md5_digest": "3d418d7c44d876e8b7879d926e574e9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7798, "upload_time": "2016-02-22T15:29:43", "url": "https://files.pythonhosted.org/packages/2a/08/c1230cf697d5af7173b0d6a8fbaf6d08286224513b7059e47db1141e210c/ipdb-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "97812231897eb7cf2962244495ca4030", "sha256": "0cd528ac1ee2c7f27d801e17cc6dd6806db3dc2b27f44d343371ad4fb0ae694a" }, "downloads": -1, "filename": "ipdb-0.9.1.tar.gz", "has_sig": false, "md5_digest": "97812231897eb7cf2962244495ca4030", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8031, "upload_time": "2016-04-12T13:08:51", "url": "https://files.pythonhosted.org/packages/60/45/0de3450e207cdb72882c1765a1b8940a6ade931c79eb5e9fc27aae3b7de8/ipdb-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "4989b961b11077960099008f5e59c817", "sha256": "6f67b1dde212eb0f3ae7f72b0a62f3c2a564710ae7f063d0af8a5e0ba59b3f03" }, "downloads": -1, "filename": "ipdb-0.9.2.tar.gz", "has_sig": false, "md5_digest": "4989b961b11077960099008f5e59c817", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8075, "upload_time": "2016-04-15T14:03:50", "url": "https://files.pythonhosted.org/packages/a8/dd/100de5411dade6960bbe968cc59c06390188dba15c124ac043aa4cba6128/ipdb-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "ce6a38718773133f92dbe3372a4d9404", "sha256": "d756434acd1f0b8f507707fd11f57c4111848cdd07be6aaed4dd6e72781aa11d" }, "downloads": -1, "filename": "ipdb-0.9.3.tar.gz", "has_sig": false, "md5_digest": "ce6a38718773133f92dbe3372a4d9404", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8180, "upload_time": "2016-04-15T14:13:55", "url": "https://files.pythonhosted.org/packages/b9/e6/ea0e9ffe679b1dd3b82133bebb7f4e438222575f51f852201a2fb068507f/ipdb-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "f9e0fd591823d80935d770763eed52fb", "sha256": "620b044e4cbd218c9a856ac84b7cf6aee25a319e40dea04237cc4ac0c35f78b1" }, "downloads": -1, "filename": "ipdb-0.9.4.tar.gz", "has_sig": false, "md5_digest": "f9e0fd591823d80935d770763eed52fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8195, "upload_time": "2016-04-29T15:57:48", "url": "https://files.pythonhosted.org/packages/d9/35/bed8681135022ef3ee1a5d3fd641f9fb7908d3fa12807f65bda1a93a1fed/ipdb-0.9.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "5c2c1d96d4c4774e29f5f0c329246a1b", "sha256": "473fdd798a099765f093231a8b1fabfa95b0b682fce12de0c74b61a4b4d8ee57" }, "downloads": -1, "filename": "ipdb-0.12.2.tar.gz", "has_sig": false, "md5_digest": "5c2c1d96d4c4774e29f5f0c329246a1b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 9368, "upload_time": "2019-07-30T16:11:18", "url": "https://files.pythonhosted.org/packages/df/78/3d0d7253dc85549db182cbe4b43b30c506c84008fcd39898122c9b6306a9/ipdb-0.12.2.tar.gz" } ] }