diff options
author | Fred Drake <fdrake@acm.org> | 2004-05-18 04:30:00 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2004-05-18 04:30:00 (GMT) |
commit | 9f15b5c11cb86e5680a40dce288c1e39427b4d2f (patch) | |
tree | f94384b4e3814040c6ef7b3b5a78dab6de414a2e /Doc/whatsnew | |
parent | 82903148a8b4d7f27c5b3180331efd98600b21e1 (diff) | |
download | cpython-9f15b5c11cb86e5680a40dce288c1e39427b4d2f.zip cpython-9f15b5c11cb86e5680a40dce288c1e39427b4d2f.tar.gz cpython-9f15b5c11cb86e5680a40dce288c1e39427b4d2f.tar.bz2 |
add some notes about the changes to ConfigParser
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/whatsnew24.tex | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/whatsnew24.tex b/Doc/whatsnew/whatsnew24.tex index bd3818c..bf2c8cb 100644 --- a/Doc/whatsnew/whatsnew24.tex +++ b/Doc/whatsnew/whatsnew24.tex @@ -367,6 +367,12 @@ Several modules now take advantage of \class{collections.deque} for improved performance: \module{Queue}, \module{mutex}, \module{shlex} \module{threading}, and \module{pydoc}. +\item The \module{ConfigParser} classes have been enhanced slightly. + The \method{read()} method now returns a list of the files that + were successfully parsed, and the \method{set()} method raises + \exception{TypeError} if passed a \var{value} argument that isn't a + string. + \item The \module{heapq} module has been converted to C. The resulting tenfold improvement in speed makes the module suitable for handling high volumes of data. |