summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2002-11-05 22:41:16 (GMT)
committerBarry Warsaw <barry@python.org>2002-11-05 22:41:16 (GMT)
commit75f36b70401f721dff1b191abfac67355507c35b (patch)
tree9605771a9e01b6199e7aa33525f8bac7804aaf67
parent210bd208eba7e3989a7d054c6f793b084a3c8a2d (diff)
downloadcpython-75f36b70401f721dff1b191abfac67355507c35b.zip
cpython-75f36b70401f721dff1b191abfac67355507c35b.tar.gz
cpython-75f36b70401f721dff1b191abfac67355507c35b.tar.bz2
Document the new `pp' command.
-rw-r--r--Doc/lib/libpdb.tex5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/lib/libpdb.tex b/Doc/lib/libpdb.tex
index 89ec556..f8417b8 100644
--- a/Doc/lib/libpdb.tex
+++ b/Doc/lib/libpdb.tex
@@ -273,6 +273,11 @@ Evaluate the \var{expression} in the current context and print its
value. (Note: \samp{print} can also be used, but is not a debugger
command --- this executes the Python \keyword{print} statement.)
+\item[pp \var{expression}]
+
+Like the \samp{p} command, except the value of the exception is
+pretty-printed using the \module{pprint} module.
+
\item[alias \optional{\var{name} \optional{command}}]
Creates an alias called \var{name} that executes \var{command}. The