]> granicus.if.org Git - python/commitdiff
Minor markup nits.
authorFred Drake <fdrake@acm.org>
Fri, 12 Feb 1999 20:40:09 +0000 (20:40 +0000)
committerFred Drake <fdrake@acm.org>
Fri, 12 Feb 1999 20:40:09 +0000 (20:40 +0000)
Doc/ref/ref5.tex
Doc/ref/ref7.tex

index 4eff3797349e3247612e33d978358cda8f7a433f..b6579bc4c8ee7117a3be648ac4989c6f8ae14e5e 100644 (file)
@@ -360,10 +360,8 @@ proper slice is a slice object (see section \ref{types}) whose
 values of the expressions given as lower bound, upper bound and
 stride, respectively, substituting \code{None} for missing
 expressions.
-\withsubitem{(slice object attribute)}{%
-  \ttindex{start}%
-  \ttindex{stop}%
-  \ttindex{step}}
+\withsubitem{(slice object attribute)}{\ttindex{start}
+  \ttindex{stop}\ttindex{step}}
 
 \subsection{Calls\label{calls}}
 \index{call}
index bfceeea900e681389af8529938e83c65e121cde8..44b3c1db521081721e3772e09e29186cea60e483 100644 (file)
@@ -225,25 +225,21 @@ exception, and the exception occurs in the try clause of the inner
 handler, the outer handler will not handle the exception.)
 
 Before an except clause's suite is executed, details about the
-exception are assigned to three variables in the \module{sys} module:
-\code{sys.exc_type} receives the object identifying the exception;
-\code{sys.exc_value} receives the exception's parameter;
-\code{sys.exc_traceback} receives a traceback object (see section
-\ref{traceback}) identifying the point in the program where the
-exception occurred.
+exception are assigned to three variables in the
+\module{sys}\refbimodindex{sys} module: \code{sys.exc_type} receives
+the object identifying the exception; \code{sys.exc_value} receives
+the exception's parameter; \code{sys.exc_traceback} receives a
+traceback object\obindex{traceback} (see section \ref{traceback})
+identifying the point in the program where the exception occurred.
 These details are also available through the \function{sys.exc_info()}
-function, which returns a tuple \code{(exc_type,} \code{exc_value,}
-\code{exc_traceback)}.  Use of the corresponding variables is
+function, which returns a tuple \code{(\var{exc_type}, \var{exc_value},
+\var{exc_traceback})}.  Use of the corresponding variables is
 deprecated in favor of this function, since their use is unsafe in a
 threaded program.  As of Python 1.5, the variables are restored to
 their previous values (before the call) when returning from a function
 that handled an exception.
-\refbimodindex{sys}
-\withsubitem{(in module sys)}{%
-  \ttindex{exc_type}%
-  \ttindex{exc_value}%
-  \ttindex{exc_traceback}}
-\obindex{traceback}
+\withsubitem{(in module sys)}{\ttindex{exc_type}
+  \ttindex{exc_value}\ttindex{exc_traceback}}
 
 The optional \keyword{else} clause is executed when no exception occurs
 in the \keyword{try} clause.  Exceptions in the \keyword{else} clause are