summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorŁukasz Langa <lukasz@langa.pl>2011-09-02 21:19:52 (GMT)
committerŁukasz Langa <lukasz@langa.pl>2011-09-02 21:19:52 (GMT)
commit35c912f3a2910c744b569eac88c2c404c625368e (patch)
tree0e97c718c88d9399d694d4faa47fcd6e9e4fa767
parent842d921a79273cd04113d154b127622ff243f9c0 (diff)
parenta4083d2dd8dfa8f1e9b36f54879f0ed9c2d36386 (diff)
downloadcpython-35c912f3a2910c744b569eac88c2c404c625368e.zip
cpython-35c912f3a2910c744b569eac88c2c404c625368e.tar.gz
cpython-35c912f3a2910c744b569eac88c2c404c625368e.tar.bz2
oops, someone beat me to it: merging minor configparser documentation cleanups
-rw-r--r--Doc/library/configparser.rst4
1 files changed, 0 insertions, 4 deletions
diff --git a/Doc/library/configparser.rst b/Doc/library/configparser.rst
index 0c68b03..afceb8d 100644
--- a/Doc/library/configparser.rst
+++ b/Doc/library/configparser.rst
@@ -865,10 +865,6 @@ ConfigParser Objects
Comments can be indented. When *inline_comment_prefixes* is given, it will be
used as the set of substrings that prefix comments in non-empty lines.
- line and inline comments. For backwards compatibility, the default value for
- *comment_prefixes* is a special value that indicates that ``;`` and ``#`` can
- start whole line comments while only ``;`` can start inline comments.
-
When *strict* is ``True`` (the default), the parser won't allow for
any section or option duplicates while reading from a single source (file,
string or dictionary), raising :exc:`DuplicateSectionError` or