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 telmich
Recipients bethard, r.david.murray, telmich
Date 2012-10-24.13:11:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1351084278.12.0.378242765231.issue16308@psf.upfronthosting.co.za>
In-reply-to
Content
Having a closer look at the changes using hg diff -r v3.2:v3.3.0 Lib/argparse.py, it seems the following removal could be related to the different behaviour:


-        # if we didn't use all the Positional objects, there were too few
-        # arg strings supplied.
-        if positionals:
-            self.error(_('too few arguments'))
-

[15:09] brief:cpython% hg grep "if positionals:" Lib/argparse.py    
Lib/argparse.py:79016:        if positionals:

And this seems to be the relevant change:

changeset:   70741:cab204a79e09
user:        R David Murray <rdmurray@bitdance.com>
date:        Thu Jun 09 12:34:07 2011 -0400
summary:     #10424: argument names are now included in the missing argument message
History
Date User Action Args
2012-10-24 13:11:18telmichsetrecipients: + telmich, bethard, r.david.murray
2012-10-24 13:11:18telmichsetmessageid: <1351084278.12.0.378242765231.issue16308@psf.upfronthosting.co.za>
2012-10-24 13:11:18telmichlinkissue16308 messages
2012-10-24 13:11:17telmichcreate