From: Fred Drake Date: Tue, 18 May 2004 03:56:51 +0000 (+0000) Subject: ConfigParser: X-Git-Tag: v2.4a1~366 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b4c6091984d846e43667cd6be6a7e01e79dbc3d7;p=python ConfigParser: - DuplicateSectionError is only raised by add_section() (closes SF bug #830449) --- diff --git a/Doc/lib/libcfgparser.tex b/Doc/lib/libcfgparser.tex index c67c52dd8c..d5c9757ad0 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}