]> granicus.if.org Git - python/commitdiff
Nits.
authorRaymond Hettinger <python@rcn.com>
Sat, 18 Dec 2010 11:20:52 +0000 (11:20 +0000)
committerRaymond Hettinger <python@rcn.com>
Sat, 18 Dec 2010 11:20:52 +0000 (11:20 +0000)
Doc/whatsnew/3.2.rst

index 193aab7dfd2cf17bc149562dc0b1975be7194949..49e9f3d76879be3175719f23e418b43b3d8dd29d 100644 (file)
@@ -1633,7 +1633,7 @@ require changes to your code:
     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 @@ require changes to your code:
 
   * 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.