From 5b15054dcbd55d46f66ed53ba2a0f4592d41c592 Mon Sep 17 00:00:00 2001 From: anatoly techtonik Date: Wed, 19 Nov 2014 13:25:06 +0300 Subject: [PATCH] Add debug and move pdb into secondary links `pdb` from standard library is not awesome (especially with all these alternatives) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a74b2c5..6d42611 100644 --- a/README.md +++ b/README.md @@ -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.