summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1999-06-29 17:08:41 (GMT)
committerFred Drake <fdrake@acm.org>1999-06-29 17:08:41 (GMT)
commit31d10cbe2658e479d019f101f5055ed6c1459bb6 (patch)
tree8a373dc6d3578cb5c58ee54a396c3e35060f8fac /Doc
parentf5213c2a3d5253ce461671ea1c64666cd778beae (diff)
downloadcpython-31d10cbe2658e479d019f101f5055ed6c1459bb6.zip
cpython-31d10cbe2658e479d019f101f5055ed6c1459bb6.tar.gz
cpython-31d10cbe2658e479d019f101f5055ed6c1459bb6.tar.bz2
Improve description of the example.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/libtraceback.tex13
1 files changed, 9 insertions, 4 deletions
diff --git a/Doc/lib/libtraceback.tex b/Doc/lib/libtraceback.tex
index 735b8de..20dc019 100644
--- a/Doc/lib/libtraceback.tex
+++ b/Doc/lib/libtraceback.tex
@@ -1,11 +1,10 @@
\section{\module{traceback} ---
- Print or retrieve a stack traceback.}
-\declaremodule{standard}{traceback}
+ Print or retrieve a stack traceback}
+\declaremodule{standard}{traceback}
\modulesynopsis{Print or retrieve a stack traceback.}
-
This module provides a standard interface to extract, format and print
stack traces of Python programs. It exactly mimics the behavior of
the Python interpreter when it prints a stack trace. This is useful
@@ -125,7 +124,13 @@ field is not updated correctly; this function calculates the correct
value.
\end{funcdesc}
-A simple example follows:
+
+\subsection{Traceback Example \label{traceback-example}}
+
+This simple example implements a basic read-eval-print loop, similar
+to (but less useful than) the standard Python interactive interpreter
+loop. For a more complete implementation of the interpreter loop,
+refer to the \refmodule{code} module.
\begin{verbatim}
import sys, traceback