diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2006-03-17 15:38:39 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2006-03-17 15:38:39 (GMT) |
commit | 01e3d262ce1af3aa1f6c07e152b19759777d1e73 (patch) | |
tree | 6bcedd7662973d94bdb0f86461ffbd4781151d3e /Doc | |
parent | c72f501aa24e44ebe0073cfdecf4a15ad9179c35 (diff) | |
download | cpython-01e3d262ce1af3aa1f6c07e152b19759777d1e73.zip cpython-01e3d262ce1af3aa1f6c07e152b19759777d1e73.tar.gz cpython-01e3d262ce1af3aa1f6c07e152b19759777d1e73.tar.bz2 |
Add some items
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/whatsnew25.tex | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/Doc/whatsnew/whatsnew25.tex b/Doc/whatsnew/whatsnew25.tex index 5743285..52a079f 100644 --- a/Doc/whatsnew/whatsnew25.tex +++ b/Doc/whatsnew/whatsnew25.tex @@ -597,6 +597,15 @@ now has \member{st_gen} and \member{st_birthtime}. The \member{st_flags} member is also available, if the platform supports it. % XXX patch 1180695, 1212117 +\item The old \module{regex} and \module{regsub} modules, which have been +deprecated ever since Python 2.0, have finally been deleted. + +\item The \file{lib-old} directory, +which includes ancient modules such as \module{dircmp} and +\module{ni}, was also deleted. \file{lib-old} wasn't on the default +\code{sys.path}, so unless your programs explicitly added the directory to +\code{sys.path}, this removal shouldn't affect your code. + \item The \module{socket} module now supports \constant{AF_NETLINK} sockets on Linux, thanks to a patch from Philippe Biondi. Netlink sockets are a Linux-specific mechanism for communications @@ -715,7 +724,14 @@ Some of the more notable changes are: \begin{itemize} -\item Details go here. +\item Evan Jones's patch to obmalloc, first described in a talk +at PyCon DC 2005, was applied. Python 2.4 allocated small objects in +256K-sized arenas, but never freed arenas. With this patch, Python +will free arenas when they're empty. The net effect is that on some +platforms, when you allocate many objects, Python's memory usage may +actually drop when you delete them, and the memory may be returned to +the operating system. (Implemented by Evan Jones, and reworked by Tim +Peters.) \end{itemize} |