[Python-checkins] CVS: python/dist/src/Doc/tut tut.tex,1.112,1.113

Fred L. Drake python-dev@python.org
Sat, 12 Aug 2000 13:08:07 -0700


Update of /cvsroot/python/python/dist/src/Doc/tut
In directory slayer.i.sourceforge.net:/tmp/cvs-serv4208/tut

Modified Files:
	tut.tex 
Log Message:

Fix some markup errors that prevented formatting, and one that didn't.


Index: tut.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/tut/tut.tex,v
retrieving revision 1.112
retrieving revision 1.113
diff -C2 -r1.112 -r1.113
*** tut.tex	2000/08/12 18:09:50	1.112
--- tut.tex	2000/08/12 20:08:04	1.113
***************
*** 1756,1762 ****
  \subsection{List Comprehensions}
  
! List comprehensions provide a concise way to create lists without resorting
! to use of the \func{map()} or \func{filter()} functions.  The resulting
! construct tends often to be clearer than use of those functions.
  
  \begin{verbatim}
--- 1756,1763 ----
  \subsection{List Comprehensions}
  
! List comprehensions provide a concise way to create lists without
! resorting to use of the \function{map()} or \function{filter()}
! functions.  The resulting construct tends often to be clearer than use
! of those functions.
  
  \begin{verbatim}
***************
*** 1778,1782 ****
  
  There is a way to remove an item from a list given its index instead
! of its value: the \code{del} statement.  This can also be used to
  remove slices from a list (which we did earlier by assignment of an
  empty list to the slice).  For example:
--- 1779,1783 ----
  
  There is a way to remove an item from a list given its index instead
! of its value: the \keyword{del} statement.  This can also be used to
  remove slices from a list (which we did earlier by assignment of an
  empty list to the slice).  For example: