From 5080cad6462128fcd3a71b1bc6a78ed890901e73 Mon Sep 17 00:00:00 2001 From: R David Murray Date: Fri, 30 Mar 2012 18:09:07 -0400 Subject: [PATCH] #10423: clarify options vs args in argparse discussion of optparse Patch by Sandro Tosi. --- Doc/library/argparse.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index bb7c88de9e2..50a45334168 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1826,9 +1826,10 @@ A partial upgrade path from :mod:`optparse` to :mod:`argparse`: * Replace all :meth:`optparse.OptionParser.add_option` calls with :meth:`ArgumentParser.add_argument` calls. -* Replace ``options, args = parser.parse_args()`` with ``args = +* Replace ``(options, args) = parser.parse_args()`` with ``args = parser.parse_args()`` and add additional :meth:`ArgumentParser.add_argument` - calls for the positional arguments. + calls for the positional arguments. Keep in mind that what was previously + called ``options``, now in :mod:`argparse` context is called ``args``. * Replace callback actions and the ``callback_*`` keyword arguments with ``type`` or ``action`` arguments.