[Python-checkins] r66488 - python/trunk/Doc/whatsnew/2.6.rst

andrew.kuchling python-checkins at python.org
Wed Sep 17 14:57:04 CEST 2008


Author: andrew.kuchling
Date: Wed Sep 17 14:57:04 2008
New Revision: 66488

Log:
Markup fixes

Modified:
   python/trunk/Doc/whatsnew/2.6.rst

Modified: python/trunk/Doc/whatsnew/2.6.rst
==============================================================================
--- python/trunk/Doc/whatsnew/2.6.rst	(original)
+++ python/trunk/Doc/whatsnew/2.6.rst	Wed Sep 17 14:57:04 2008
@@ -2131,13 +2131,11 @@
 
   (Contributed by Christian Heimes and Mark Dickinson.)
 
-* The :mod:`MimeWriter` module has been deprecated; use the email
+* The :mod:`MimeWriter` module and :mod:`mimify` module
+  have been deprecated; use the :mod:`email`
   package instead.
 
-* The :mod:`mimify` module has been deprecated; use the email package
-  instead.
-
-* The :mod:`md5` module has been deprecated; use the hashlib module
+* The :mod:`md5` module has been deprecated; use the :mod:`hashlib` module
   instead.
 
 * :class:`mmap` objects now have a :meth:`rfind` method that searches for a
@@ -2235,7 +2233,7 @@
   opcodes, returning a shorter pickle that contains the same data structure.
   (Contributed by Raymond Hettinger.)
 
-* The :mod:`popen2` module has been deprecated; use the subprocess
+* The :mod:`popen2` module has been deprecated; use the :mod:`subprocess`
   module.
 
 * A :func:`get_data` function was added to the :mod:`pkgutil`
@@ -2300,7 +2298,7 @@
   will now ignore exceptions triggered while evaluating a name.
   (Fixed by Lorenz Quack; :issue:`2250`.)
 
-* The :mod:`sha` module has been deprecated; use the hashlib module
+* The :mod:`sha` module has been deprecated; use the :mod:`hashlib` module
   instead.
 
 * The :mod:`sched` module's :class:`scheduler` instances now


More information about the Python-checkins mailing list