diff options
author | Raymond Hettinger <python@rcn.com> | 2010-12-18 11:20:52 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-12-18 11:20:52 (GMT) |
commit | 2b8861fa700fdc257ca33e8f2fdc179f6fa10d5d (patch) | |
tree | 7edf3a405ec8be4b22e9f87d58dca6dfa5ddfdda | |
parent | fd311a712d5876c3a3efff265978452eea759f85 (diff) | |
download | cpython-2b8861fa700fdc257ca33e8f2fdc179f6fa10d5d.zip cpython-2b8861fa700fdc257ca33e8f2fdc179f6fa10d5d.tar.gz cpython-2b8861fa700fdc257ca33e8f2fdc179f6fa10d5d.tar.bz2 |
Nits.
-rw-r--r-- | Doc/whatsnew/3.2.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 193aab7..49e9f3d 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -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. |