summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2001-03-26 13:34:53 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2001-03-26 13:34:53 (GMT)
commit4240bc50f635a91be49ad86fb7f8e4408fd2df25 (patch)
treeb812d21ca231dcc51ced1451b501d50c159e5111 /Doc/whatsnew
parentc658236d72756f0612caa0c664c5ba9f9c844458 (diff)
downloadcpython-4240bc50f635a91be49ad86fb7f8e4408fd2df25.zip
cpython-4240bc50f635a91be49ad86fb7f8e4408fd2df25.tar.gz
cpython-4240bc50f635a91be49ad86fb7f8e4408fd2df25.tar.bz2
Note missing explanation
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/whatsnew21.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/whatsnew21.tex b/Doc/whatsnew/whatsnew21.tex
index d54dd5b..eeeabdd 100644
--- a/Doc/whatsnew/whatsnew21.tex
+++ b/Doc/whatsnew/whatsnew21.tex
@@ -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