Update of /cvsroot/py-howto/pyhowto
In directory usw-pr-cvs1:/tmp/cvs-serv18454
Modified Files:
python-21.tex
Log Message:
Note missing explanation
Index: python-21.tex
===================================================================
RCS file: /cvsroot/py-howto/pyhowto/python-21.tex,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -r1.21 -r1.22
*** python-21.tex 2001/03/23 03:52:46 1.21
--- python-21.tex 2001/03/26 13:34:53 1.22
***************
*** 16,20 ****
{\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 1. Please send any comments, bug reports, or
questions, no matter how minor, to \email{am...@bi...}. }
--- 16,20 ----
{\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...}. }
***************
*** 800,804 ****
\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 .
\code{D.popitem()} removes a random \code{(\var{key}, \var{value})}
pair from the dictionary and returns it as a 2-tuple. This was
--- 800,804 ----
\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
|