[Python-checkins] python/dist/src/Doc/whatsnew whatsnew24.tex, 1.41, 1.42

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Wed May 5 22:55:38 EDT 2004


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

Modified Files:
	whatsnew24.tex 
Log Message:
markup adjustments


Index: whatsnew24.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew24.tex,v
retrieving revision 1.41
retrieving revision 1.42
diff -C2 -d -r1.41 -r1.42
*** whatsnew24.tex	6 May 2004 01:54:35 -0000	1.41
--- whatsnew24.tex	6 May 2004 02:55:35 -0000	1.42
***************
*** 34,39 ****
  \section{PEP 218: Built-In Set Objects}
  
! Two new built-in types, \function{set(iterable)} and
! \function{frozenset(iterable)} provide high speed data types for
  membership testing, for eliminating duplicates from sequences, and
  for mathematical operations like unions, intersections, differences,
--- 34,39 ----
  \section{PEP 218: Built-In Set Objects}
  
! Two new built-in types, \function{set(\var{iterable})} and
! \function{frozenset(\var{iterable})} provide high speed data types for
  membership testing, for eliminating duplicates from sequences, and
  for mathematical operations like unions, intersections, differences,
***************
*** 92,96 ****
  \section{PEP 322: Reverse Iteration}
  
! A new built-in function, \function{reversed(seq)}, takes a sequence
  and returns an iterator that returns the elements of the sequence 
  in reverse order.  
--- 92,96 ----
  \section{PEP 322: Reverse Iteration}
  
! A new built-in function, \function{reversed(\var{seq})}, takes a sequence
  and returns an iterator that returns the elements of the sequence 
  in reverse order.  
***************
*** 209,215 ****
  people with the same age are in name-sorted order.
  
! \item There is a new built-in function \function{sorted(iterable)} that works
! like the in-place \method{list.sort()} method but has been made suitable
! for use in expressions.  The differences are:
    \begin{itemize}
    \item the input may be any iterable;
--- 209,216 ----
  people with the same age are in name-sorted order.
  
! \item There is a new built-in function
! \function{sorted(\var{iterable})} that works like the in-place
! \method{list.sort()} method but has been made suitable for use in
! expressions.  The differences are:
    \begin{itemize}
    \item the input may be any iterable;
***************
*** 562,568 ****
        instead of returning empty lists.
  
! \item \function{LexicalHandler.startDTD} used to receive public and system ID
!   in the wrong order. This has been corrected; applications relying on the
!   wrong order need to be fixed.
  
  \end{itemize}
--- 563,569 ----
        instead of returning empty lists.
  
! \item \function{LexicalHandler.startDTD()} used to receive public and
!   system ID in the wrong order.  This has been corrected; applications
!   relying on the wrong order need to be fixed.
  
  \end{itemize}




More information about the Python-checkins mailing list