summaryrefslogtreecommitdiff
path: root/Doc/library/pdb.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-01-03 21:18:54 +0000
committerGeorg Brandl <georg@python.org>2009-01-03 21:18:54 +0000
commite8e1ef2b43ba0bedf0069334f115a58afb126f0c (patch)
treeb9ed90945f6a0ef937f38967b2fed7d43efe8fe9 /Doc/library/pdb.rst
parent5d20a71b2054bb1cdf5676414dfb6957ca844bff (diff)
downloadcpython-e8e1ef2b43ba0bedf0069334f115a58afb126f0c.tar.gz
Remove trailing whitespace.
Diffstat (limited to 'Doc/library/pdb.rst')
-rw-r--r--Doc/library/pdb.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/pdb.rst b/Doc/library/pdb.rst
index 2537983004..c7b34ab764 100644
--- a/Doc/library/pdb.rst
+++ b/Doc/library/pdb.rst
@@ -37,7 +37,7 @@ of the debugger is::
(Pdb) continue
NameError: 'spam'
> <string>(1)?()
- (Pdb)
+ (Pdb)
:file:`pdb.py` can also be invoked as a script to debug other scripts. For
example::
@@ -65,7 +65,7 @@ Typical usage to inspect a crashed program is::
>>> pdb.pm()
> ./mymodule.py(3)test2()
-> print(spam)
- (Pdb)
+ (Pdb)
The module defines the following functions; each enters the debugger in a
slightly different way:
@@ -105,7 +105,7 @@ slightly different way:
.. function:: post_mortem([traceback])
- Enter post-mortem debugging of the given *traceback* object. If no
+ Enter post-mortem debugging of the given *traceback* object. If no
*traceback* is given, it uses the one of the exception that is currently
being handled (an exception must be being handled if the default is to be
used).