[Python-checkins] python/dist/src/Doc/whatsnew whatsnew24.tex, 1.54, 1.55

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Thu Jun 10 01:03:19 EDT 2004


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

Modified Files:
	whatsnew24.tex 
Log Message:
SF patch #969791: Add nlargest() and nsmallest() to heapq.



Index: whatsnew24.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew24.tex,v
retrieving revision 1.54
retrieving revision 1.55
diff -C2 -d -r1.54 -r1.55
*** whatsnew24.tex	4 Jun 2004 09:33:18 -0000	1.54
--- whatsnew24.tex	10 Jun 2004 05:03:16 -0000	1.55
***************
*** 450,454 ****
  \item The \module{heapq} module has been converted to C.  The resulting
     tenfold improvement in speed makes the module suitable for handling
!    high volumes of data.
  
  \item The \module{imaplib} module now supports IMAP's THREAD command.
--- 450,457 ----
  \item The \module{heapq} module has been converted to C.  The resulting
     tenfold improvement in speed makes the module suitable for handling
!    high volumes of data.  In addition, the module has two new functions
!    \function{nlargest()} and \function{nsmallest()} that use heaps to
!    find the largest or smallest n values in a dataset without the
!    expense of a full sort.
  
  \item The \module{imaplib} module now supports IMAP's THREAD command.




More information about the Python-checkins mailing list