Commit 86c60ed1 authored by Fred Drake's avatar Fred Drake

ConfigParser.items() and SafeConfigParser.items() no longer return a

generator.  See SF bug #818861.
parent 8c4da53a
...@@ -279,8 +279,8 @@ on the defaults passed into the constructor, as well as the options ...@@ -279,8 +279,8 @@ on the defaults passed into the constructor, as well as the options
\end{methoddesc} \end{methoddesc}
\begin{methoddesc}{items}{section\optional{, raw\optional{, vars}}} \begin{methoddesc}{items}{section\optional{, raw\optional{, vars}}}
Create a generator which will return a tuple \code{(name, value)} for Return a list of \code{(\var{name}, \var{value})} pairs for each
each option in the given \var{section}. Optional arguments have the option in the given \var{section}. Optional arguments have the
same meaning as for the \code{get()} method. same meaning as for the \method{get()} method.
\versionadded{2.3} \versionadded{2.3}
\end{methoddesc} \end{methoddesc}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment