summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-12-07 12:02:02 (GMT)
committerRaymond Hettinger <python@rcn.com>2004-12-07 12:02:02 (GMT)
commit3557f42658a9a69461d5f2af7c8751ba201e53e1 (patch)
tree157dbd79b4c2d63f35a1664964e3b33caef8edac /Misc
parent6c1e0fe7ba04f15b17bdc7495e471e7b3f23e7d5 (diff)
downloadcpython-3557f42658a9a69461d5f2af7c8751ba201e53e1.zip
cpython-3557f42658a9a69461d5f2af7c8751ba201e53e1.tar.gz
cpython-3557f42658a9a69461d5f2af7c8751ba201e53e1.tar.bz2
Combined several entries.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS8
1 files changed, 2 insertions, 6 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f619829..8a710ff 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -28,17 +28,15 @@ Extension Modules
Library
-------
+- moved deprecated modules to Lib/lib-old: whrandom, tzparse, statcache.
+
- the pickle module no longer accepts the deprecated None option in the
args tuple returned by __reduce__().
- optparse now optionally imports gettext. This allows its use in setup.py.
-- the deprecated tzparse module was removed.
-
- the pickle module no longer uses the deprecated bin parameter.
-- the depecated statcache module was removed.
-
- the shelve module no longer uses the deprecated binary parameter.
- the pstats module no longer uses the deprecated ignore() method.
@@ -49,8 +47,6 @@ Library
extended or overridden by subclasses. Formerly, the subclassed method would
be ignored by the rest of the module. (Bug #1078905).
-- the deprecated whrandom module was removed. Use the random module instead.
-
- heapq.nsmallest() and heapq.nlargest() now support key= arguments with
the same meaning as in list.sort().