Add debug and move pdb into secondary links

`pdb` from standard library is not awesome (especially with all these alternatives)
This commit is contained in:
anatoly techtonik 2014-11-19 13:25:06 +03:00
parent d878a2cc36
commit 5b15054dcb

View file

@ -843,8 +843,8 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by
*Libraries for debugging code.*
* [pdb](https://docs.python.org/2/library/pdb.html) - (Python standard library) The Python Debugger.
* [ipdb](https://pypi.python.org/pypi/ipdb) - IPython-enabled pdb.
* [ipdb](https://pypi.python.org/pypi/ipdb) - IPython-enabled [pdb](https://docs.python.org/2/library/pdb.html).
* [debug](https://pypi.python.org/pypi/debug) - `import debug` to fall into `ipdb` with `see`.
* [winpdb](http://winpdb.org/) - A Platform Independent Python Debugger with GUI.
* [pudb](https://pypi.python.org/pypi/pudb) A full-screen, console-based Python debugger.
* [pyringe](https://github.com/google/pyringe) - Debugger capable of attaching to and injecting code into Python processes.