From: A.M. K. <aku...@us...> - 2001-04-12 03:37:22
|
Update of /cvsroot/py-howto/pyhowto In directory usw-pr-cvs1:/tmp/cvs-serv9128 Modified Files: python-21.tex Log Message: Explain popitem() Add Unixware 7 port Ready for RC1 Minor rewrites Index: python-21.tex =================================================================== RCS file: /cvsroot/py-howto/pyhowto/python-21.tex,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -r1.22 -r1.23 *** python-21.tex 2001/03/26 13:34:53 1.22 --- python-21.tex 2001/04/12 03:37:19 1.23 *************** *** 6,10 **** \title{What's New in Python 2.1} ! \release{0.07} \author{A.M. Kuchling} \authoraddress{\email{am...@bi...}} --- 6,10 ---- \title{What's New in Python 2.1} ! \release{0.99} \author{A.M. Kuchling} \authoraddress{\email{am...@bi...}} *************** *** 14,23 **** \section{Introduction} ! {\large This document is a draft, and is subject to change until ! the final version of Python 2.1 is released. Currently it is up to date ! for Python 2.1 beta 2. Please send any comments, bug reports, or ! questions, no matter how minor, to \email{am...@bi...}. } ! It's that time again... time for a new Python release, version 2.1. One recent goal of the Python development team has been to accelerate the pace of new releases, with a new release coming every 6 to 9 --- 14,24 ---- \section{Introduction} ! {\large This document is a draft, and is subject to change until the ! final version of Python 2.1 is released. Currently it is up to date ! for Python 2.1 release candidate~1. Please send any comments, bug ! reports, or questions, no matter how minor, to ! \email{am...@bi...}. } ! It's that time again... time for a new Python release, Python 2.1. One recent goal of the Python development team has been to accelerate the pace of new releases, with a new release coming every 6 to 9 *************** *** 37,42 **** more details about any new feature that particularly interests you. ! Currently 2.1 is available in a beta release, and the final release is ! planned for April 2001. %====================================================================== --- 38,42 ---- more details about any new feature that particularly interests you. ! The final release of Python 2.1 is planned for April 2001. %====================================================================== *************** *** 796,807 **** For a fuller discussion of the line I/O changes, see the python-dev ! summary for January 1-15, 2001. \item A new method, \method{popitem()}, was added to dictionaries to enable destructively iterating through the contents of a dictionary; ! this can be faster for large dictionaries because XXX. \code{D.popitem()} removes a random \code{(\var{key}, \var{value})} ! pair from the dictionary and returns it as a 2-tuple. This was ! implemented mostly by Tim Peters and Guido van Rossum, after a suggestion and preliminary patch by Moshe Zadka. --- 796,809 ---- For a fuller discussion of the line I/O changes, see the python-dev ! summary for January 1-15, 2001 at ! \url{http://www.amk.ca/python/dev/2001-01-1.html}. \item A new method, \method{popitem()}, was added to dictionaries to enable destructively iterating through the contents of a dictionary; ! this can be faster for large dictionaries because there's no need to ! construct a list containing all the keys or values. \code{D.popitem()} removes a random \code{(\var{key}, \var{value})} ! pair from the dictionary~\code{D} and returns it as a 2-tuple. This ! was implemented mostly by Tim Peters and Guido van Rossum, after a suggestion and preliminary patch by Moshe Zadka. *************** *** 845,849 **** \item Some new ports were contributed: MacOS X (by Steven Majewski), ! Cygwin (by Jason Tishler); RISCOS (by Dietmar Schwertberger). \end{itemize} --- 847,852 ---- \item Some new ports were contributed: MacOS X (by Steven Majewski), ! Cygwin (by Jason Tishler); RISCOS (by Dietmar Schwertberger); Unixware~7 ! (by Billy G. Allie). \end{itemize} |