diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2006-04-13 12:37:21 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2006-04-13 12:37:21 (GMT) |
commit | 6fc6976507715812e1c57493d41436c4bf195d32 (patch) | |
tree | 94818f949ec4ded0faa5405f013179d725737276 /Doc/whatsnew/whatsnew25.tex | |
parent | 0cc56e5c59bbc9d839d1468f8b51ea9391e8852a (diff) | |
download | cpython-6fc6976507715812e1c57493d41436c4bf195d32.zip cpython-6fc6976507715812e1c57493d41436c4bf195d32.tar.gz cpython-6fc6976507715812e1c57493d41436c4bf195d32.tar.bz2 |
Add some items
Diffstat (limited to 'Doc/whatsnew/whatsnew25.tex')
-rw-r--r-- | Doc/whatsnew/whatsnew25.tex | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/Doc/whatsnew/whatsnew25.tex b/Doc/whatsnew/whatsnew25.tex index a69b301..ad58371 100644 --- a/Doc/whatsnew/whatsnew25.tex +++ b/Doc/whatsnew/whatsnew25.tex @@ -958,22 +958,26 @@ details. \begin{itemize} -% collections.deque now has .remove() +% XXX collections.deque now has .remove() % collections.defaultdict % the cPickle module no longer accepts the deprecated None option in the % args tuple returned by __reduce__(). -% csv module improvements +% XXX csv module improvements -% datetime.datetime() now has a strptime class method which can be used to +% XXX datetime.datetime() now has a strptime class method which can be used to % create datetime object using a string and format. -% fileinput: opening hook used to control how files are opened. +% XXX fileinput: opening hook used to control how files are opened. % .input() now has a mode parameter % now has a fileno() function % accepts Unicode filenames +\item The \module{audioop} module now supports the a-LAW encoding, +and the code for u-LAW encoding has been improved. (Contributed by +Lars Immisch.) + \item In the \module{gc} module, the new \function{get_count()} function returns a 3-tuple containing the current collection counts for the three GC generations. This is accounting information for the garbage @@ -1563,9 +1567,15 @@ error checking. %====================================================================== -%\subsection{Port-Specific Changes} +\subsection{Port-Specific Changes} + +\begin{itemize} -%Platform-specific changes go here. +\item MacOS X (10.3 and higher): dynamic loading of modules +now uses the \cfunction{dlopen()} function instead of MacOS-specific +functions. + +\end{itemize} %====================================================================== |