This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Robert
Recipients Robert, bethard, docs@python
Date 2013-01-17.21:30:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1358458215.07.0.403888123098.issue16988@psf.upfronthosting.co.za>
In-reply-to
Content
There is a value for nargs: PARSER="A..." which is not documented at http://docs.python.org/3.4/library/argparse.html#nargs. The docstring for the action class in argparse.py also does not list PARSER as a valid value for nargs.

In argparse.py on line 2199-2201 it says:
# Allow one argument followed by any number of options or arguments
elif nargs == PARSER:
    nargs_pattern = '(-*A[-AO]*)'

This is the only hint that I could find on what it is about.
History
Date User Action Args
2013-01-17 21:30:15Robertsetrecipients: + Robert, bethard, docs@python
2013-01-17 21:30:15Robertsetmessageid: <1358458215.07.0.403888123098.issue16988@psf.upfronthosting.co.za>
2013-01-17 21:30:15Robertlinkissue16988 messages
2013-01-17 21:30:14Robertcreate