[Python-checkins] python/dist/src/Doc/lib libdoctest.tex,1.48,1.49

tim_one at users.sourceforge.net tim_one at users.sourceforge.net
Sat Sep 25 03:30:19 CEST 2004


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19010/Doc/lib

Modified Files:
	libdoctest.tex 
Log Message:
Since the doctest warnings section was reduced to one bullet point,
get rid of the itemize structure.


Index: libdoctest.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libdoctest.tex,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -d -r1.48 -r1.49
--- libdoctest.tex	25 Sep 2004 01:22:29 -0000	1.48
+++ libdoctest.tex	25 Sep 2004 01:30:16 -0000	1.49
@@ -712,14 +712,12 @@
 
 \subsubsection{Warnings\label{doctest-warnings}}
 
-\begin{itemize}
-
-\item \module{doctest} is serious about requiring exact matches in expected
-  output.  If even a single character doesn't match, the test fails.  This
-  will probably surprise you a few times, as you learn exactly what Python
-  does and doesn't guarantee about output.  For example, when printing a
-  dict, Python doesn't guarantee that the key-value pairs will be printed
-  in any particular order, so a test like
+\module{doctest} is serious about requiring exact matches in expected
+output.  If even a single character doesn't match, the test fails.  This
+will probably surprise you a few times, as you learn exactly what Python
+does and doesn't guarantee about output.  For example, when printing a
+dict, Python doesn't guarantee that the key-value pairs will be printed
+in any particular order, so a test like
 
 % Hey! What happened to Monty Python examples?
 % Tim: ask Guido -- it's his example!
@@ -788,8 +786,6 @@
 Simple fractions are also easier for people to understand, and that makes
 for better documentation.
 
-\end{itemize}
-
 \subsection{Basic API\label{doctest-basic-api}}
 
 The functions \function{testmod()} and \function{testfile()} provide a



More information about the Python-checkins mailing list