]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Combined several entries.
authorRaymond Hettinger <python@rcn.com>
Tue, 7 Dec 2004 12:02:02 +0000 (12:02 +0000)
committerRaymond Hettinger <python@rcn.com>
Tue, 7 Dec 2004 12:02:02 +0000 (12:02 +0000)
Misc/NEWS

index f619829399ed42a952f2b125480d4d2252b676af..8a710ffcb7f2ccb15e12ed7a4ef24c7b343254ac 100644 (file)
--- 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().