diff options
author | Georg Brandl <georg@python.org> | 2009-04-27 15:29:09 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-04-27 15:29:09 (GMT) |
commit | 16a57f6a343d7bacd85e79c3edb64cd832d8a9ac (patch) | |
tree | c277aed5347aa94a08a6b6742f31f56efbc56948 /Doc/library/configparser.rst | |
parent | d91f8cf779d9ac4c34e3a47a5a6cfe698874c5dd (diff) | |
download | cpython-16a57f6a343d7bacd85e79c3edb64cd832d8a9ac.zip cpython-16a57f6a343d7bacd85e79c3edb64cd832d8a9ac.tar.gz cpython-16a57f6a343d7bacd85e79c3edb64cd832d8a9ac.tar.bz2 |
Demote warnings to notices where appropriate, following the goal that as few "red box" warnings
should clutter the docs as possible. Part 1: stuff that gets merged to Py3k.
Diffstat (limited to 'Doc/library/configparser.rst')
-rw-r--r-- | Doc/library/configparser.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/configparser.rst b/Doc/library/configparser.rst index 0c5bb15..2eeefb0 100644 --- a/Doc/library/configparser.rst +++ b/Doc/library/configparser.rst @@ -27,10 +27,10 @@ structure similar to what you would find on Microsoft Windows INI files. You can use this to write Python programs which can be customized by end users easily. -.. warning:: +.. note:: - This library does *not* interpret or write the value-type prefixes used in the - Windows Registry extended version of INI syntax. + This library does *not* interpret or write the value-type prefixes used in + the Windows Registry extended version of INI syntax. The configuration file consists of sections, led by a ``[section]`` header and followed by ``name: value`` entries, with continuations in the style of |