fix argument name in documentation; match the implementation

This commit is contained in:
Fred Drake 2007-05-17 19:29:43 +00:00
parent dc78cc6f7c
commit 2cb077a8c1
1 changed files with 2 additions and 2 deletions

View File

@ -1191,14 +1191,14 @@ OptionValueError if an invalid string is given.
The whole point of creating and populating an OptionParser is to call The whole point of creating and populating an OptionParser is to call
its \method{parse{\_}args()} method: its \method{parse{\_}args()} method:
\begin{verbatim} \begin{verbatim}
(options, args) = parser.parse_args(args=None, options=None) (options, args) = parser.parse_args(args=None, values=None)
\end{verbatim} \end{verbatim}
where the input parameters are where the input parameters are
\begin{description} \begin{description}
\item[\code{args}] \item[\code{args}]
the list of arguments to process (default: \code{sys.argv{[}1:]}) the list of arguments to process (default: \code{sys.argv{[}1:]})
\item[\code{options}] \item[\code{values}]
object to store option arguments in (default: a new instance of object to store option arguments in (default: a new instance of
optparse.Values) optparse.Values)
\end{description} \end{description}