From: Fred Drake Date: Thu, 17 May 2007 19:29:58 +0000 (+0000) Subject: fix argument name in documentation; match the implementation X-Git-Tag: v2.6a1~1732 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=88d96ade596bbf5bd4c0f737569b5315568ccd7b;p=python fix argument name in documentation; match the implementation --- diff --git a/Doc/lib/liboptparse.tex b/Doc/lib/liboptparse.tex index dd618c83da..eb4919b566 100644 --- a/Doc/lib/liboptparse.tex +++ b/Doc/lib/liboptparse.tex @@ -1191,14 +1191,14 @@ OptionValueError if an invalid string is given. The whole point of creating and populating an OptionParser is to call its \method{parse{\_}args()} method: \begin{verbatim} -(options, args) = parser.parse_args(args=None, options=None) +(options, args) = parser.parse_args(args=None, values=None) \end{verbatim} where the input parameters are \begin{description} \item[\code{args}] 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 optparse.Values) \end{description}