[Python-checkins] r86800 - python/branches/py3k/Doc/whatsnew/3.2.rst

georg.brandl python-checkins at python.org
Fri Nov 26 13:10:07 CET 2010


Author: georg.brandl
Date: Fri Nov 26 13:10:06 2010
New Revision: 86800

Log:
Typo fix.

Modified:
   python/branches/py3k/Doc/whatsnew/3.2.rst

Modified: python/branches/py3k/Doc/whatsnew/3.2.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.2.rst	(original)
+++ python/branches/py3k/Doc/whatsnew/3.2.rst	Fri Nov 26 13:10:06 2010
@@ -657,7 +657,7 @@
 :data:`os.environ`, :func:`os.getenvb` function and
 :data:`os.supports_bytes_environ` constant.
 
-``'mbcs'`` encoding doesn't ignore the error handler argument anymore. By
+``'mbcs'`` encoding doesn't ignore the error handler argument any more. By
 default (strict mode), it raises an UnicodeDecodeError on undecodable byte
 sequence and UnicodeEncodeError on unencodable character. To get the ``'mbcs'``
 encoding of Python 3.1, use ``'ignore'`` error handler to decode and
@@ -721,7 +721,7 @@
 * The :mod:`nntplib` module was reworked extensively, meaning that its APIs
   are often incompatible with the 3.1 APIs.
 
-* :class:`bytearray` objects cannot be used anymore as filenames: convert them
+* :class:`bytearray` objects cannot be used any more as filenames: convert them
   to :class:`bytes`.
 
 * PyArg_Parse*() functions:


More information about the Python-checkins mailing list