diff options
author | Fred Drake <fdrake@acm.org> | 1999-02-05 18:30:49 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-02-05 18:30:49 (GMT) |
commit | f9918f25b15598315adf3925100e41b7bb64d4f6 (patch) | |
tree | 2698f4edd9b7bac7d6609ea252dceb6e042bbd81 /Doc/ext | |
parent | e600578ac7e45ac4bd5ad07b50ec3fc0de322e1f (diff) | |
download | cpython-f9918f25b15598315adf3925100e41b7bb64d4f6.zip cpython-f9918f25b15598315adf3925100e41b7bb64d4f6.tar.gz cpython-f9918f25b15598315adf3925100e41b7bb64d4f6.tar.bz2 |
Minor nit to prevent dropping a space in the HTML generation.
Diffstat (limited to 'Doc/ext')
-rw-r--r-- | Doc/ext/ext.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/ext/ext.tex b/Doc/ext/ext.tex index 0891185..100f8a5 100644 --- a/Doc/ext/ext.tex +++ b/Doc/ext/ext.tex @@ -173,8 +173,8 @@ variable stores the ``associated value'' of the exception (the second argument to \keyword{raise}). A third variable contains the stack traceback in case the error originated in Python code. These three variables are the \C{} equivalents of the Python variables -\code{sys.exc_type}, \code{sys.exc_value} and \code{sys.exc_traceback} -(see the section on module \module{sys} in the \emph{Python Library +\code{sys.exc_type}, \code{sys.exc_value} and \code{sys.exc_traceback} (see +the section on module \module{sys} in the \emph{Python Library Reference}). It is important to know about them to understand how errors are passed around. |