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

raymond.hettinger python-checkins at python.org
Sat Dec 18 12:20:52 CET 2010


Author: raymond.hettinger
Date: Sat Dec 18 12:20:52 2010
New Revision: 87363

Log:
Nits.


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	Sat Dec 18 12:20:52 2010
@@ -1633,7 +1633,7 @@
     values are actual strings.  Formerly, unsupported types could be introduced
     unintentionally.
 
-  * Duplicate sections or options now raise either
+  * Duplicate sections or options from a single source now raise either
     :exc:`~configparser.DuplicateSectionError` or
     :exc:`~configparser.DuplicateOptionError`.  Formerly, duplicates would
     silently overwrite a previous entry.
@@ -1643,7 +1643,7 @@
 
   * Comments now can be indented.  Consequently, for **;** or **#** to appear at
     the start of a line in multiline values, it has to be interpolated.  This
-    keep comment prefix characters in value from being mistaken as comments.
+    keeps comment prefix characters in values from being mistaken as comments.
 
   * ``""`` is now a valid value and is no longer automatically converted to an
     empty string. For empty strings, use ``"option ="`` in a line.


More information about the Python-checkins mailing list