summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2004-05-18 03:56:51 (GMT)
committerFred Drake <fdrake@acm.org>2004-05-18 03:56:51 (GMT)
commitb4c6091984d846e43667cd6be6a7e01e79dbc3d7 (patch)
tree9654d1182c39f3db4abf232d64012f8755ed9069 /Doc
parentabc086fb0df915b702f14fa3d44e79e0a8b8f11f (diff)
downloadcpython-b4c6091984d846e43667cd6be6a7e01e79dbc3d7.zip
cpython-b4c6091984d846e43667cd6be6a7e01e79dbc3d7.tar.gz
cpython-b4c6091984d846e43667cd6be6a7e01e79dbc3d7.tar.bz2
ConfigParser:
- DuplicateSectionError is only raised by add_section() (closes SF bug #830449)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/libcfgparser.tex5
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/lib/libcfgparser.tex b/Doc/lib/libcfgparser.tex
index c67c52d..d5c9757 100644
--- a/Doc/lib/libcfgparser.tex
+++ b/Doc/lib/libcfgparser.tex
@@ -86,9 +86,8 @@ Exception raised when a specified section is not found.
\end{excdesc}
\begin{excdesc}{DuplicateSectionError}
-Exception raised when multiple sections with the same name are found,
-or if \method{add_section()} is called with the name of a section that
-is already present.
+Exception raised if \method{add_section()} is called with the name of
+a section that is already present.
\end{excdesc}
\begin{excdesc}{NoOptionError}