diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2000-06-09 02:48:18 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2000-06-09 02:48:18 (GMT) |
commit | 7f6270d97ef5b26d32ad94559f95e26fd621a1d3 (patch) | |
tree | 91ab7b231318b244bc006b865b0eb22b5e1d76ab | |
parent | d4ab4a5905d238c27b6d93823f1959c69c6e15c6 (diff) | |
download | cpython-7f6270d97ef5b26d32ad94559f95e26fd621a1d3.zip cpython-7f6270d97ef5b26d32ad94559f95e26fd621a1d3.tar.gz cpython-7f6270d97ef5b26d32ad94559f95e26fd621a1d3.tar.bz2 |
Minor fixes, additions to notes
-rw-r--r-- | Doc/whatsnew/whatsnew20.tex | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/whatsnew/whatsnew20.tex b/Doc/whatsnew/whatsnew20.tex index 1cdde64..9021f88 100644 --- a/Doc/whatsnew/whatsnew20.tex +++ b/Doc/whatsnew/whatsnew20.tex @@ -61,7 +61,7 @@ that the current default encoding?) Combining 8-bit and Unicode strings always coerces to Unicode, using the default ASCII encoding; the result of \code{'a' + u'bc'} is -\code{'abc'}. +\code{u'abc'}. New built-in functions have been added, and existing built-ins modified to support Unicode: @@ -532,11 +532,11 @@ XXX re - changed to be a frontend to sre % ====================================================================== \section{New modules} -winreg - Windows registry interface. -PyExpat - interface to Expat XML parser +winreg - Windows registry interface. (Bill Tutt, Mark Hammond) +PyExpat - interface to Expat XML parser (Paul Prescod) robotparser - parse a robots.txt file (for writing web spiders) linuxaudio - audio for Linux -mmap - treat a file as a memory buffer +mmap - treat a file as a memory buffer (Sam Rushing, AMK) filecmp - supersedes the old cmp.py and dircmp.py modules tabnanny - check Python sources for tab-width dependance @@ -548,7 +548,7 @@ XXX IDLE -- complete overhaul; what are the changes? % ====================================================================== \section{Deleted and Deprecated Modules} -XXX stdwin, others? +XXX stdwin, cmp.py, dircmp.py, others? \end{document} |