From e4df11276b1d943be9059d488671ebef78e6562f Mon Sep 17 00:00:00 2001 From: Eli Finer Date: Tue, 25 Dec 2012 14:32:27 +0200 Subject: [PATCH] fixup readme --- README.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 7a8b31f..3d605e9 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,10 @@ -Python post-post-mortem debugging -================================= +Python post-mortem debugging +============================ -Pydump allows post-mortem debugging for Python programs. +Pydump writes the traceback of an exception into a file and +can later load it in a Python debugger. -It writes the traceback of an exception into a file and can later load -it in a Python debugger. - -Works with the built-in pdb and with other popular debuggers +Pydump works with the built-in pdb and with other popular debuggers (pudb, ipdb and pdbpp). Why I wrote this?