Note missing explanation
authorAndrew M. Kuchling <amk@amk.ca>
Mon, 26 Mar 2001 13:34:53 +0000 (13:34 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Mon, 26 Mar 2001 13:34:53 +0000 (13:34 +0000)
Doc/whatsnew/whatsnew21.tex

index d54dd5b85b8383bf8c7433511d953152621476bb..eeeabdd8667a1b0b1ce8f6106f5e83c4c5e41daf 100644 (file)
@@ -15,7 +15,7 @@
 
 {\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
+for Python 2.1 beta 2.  Please send any comments, bug reports, or
 questions, no matter how minor, to \email{amk1@bigfoot.com}.  }
 
 It's that time again... time for a new Python release, version 2.1.
@@ -799,7 +799,7 @@ 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 .
+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