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 bethard
Recipients benjamin.peterson, bethard, georg.brandl, r.david.murray, zbysz
Date 2012-09-02.17:37:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1346607475.11.0.155620163732.issue15847@psf.upfronthosting.co.za>
In-reply-to
Content
The fix looks about right to me.

There's a bug in the tests though:

    parser.parse_args(('x'))

should probably be:

    parser.parse_args(('x',))

since I assume the intent was to test tuples.
History
Date User Action Args
2012-09-02 17:37:55bethardsetrecipients: + bethard, georg.brandl, benjamin.peterson, r.david.murray, zbysz
2012-09-02 17:37:55bethardsetmessageid: <1346607475.11.0.155620163732.issue15847@psf.upfronthosting.co.za>
2012-09-02 17:37:54bethardlinkissue15847 messages
2012-09-02 17:37:54bethardcreate