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 paul.j3
Recipients Markus.Amalthea.Magnuson, bethard, docs@python, paul.j3, r.david.murray
Date 2013-04-04.02:21:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1365042072.82.0.103989209443.issue16399@psf.upfronthosting.co.za>
In-reply-to
Content
The test file, test_argparse.py, has a test case for this:
'class TestOptionalsActionAppendWithDefault'

    argument_signatures = [Sig('--baz', action='append', default=['X'])]
    successes = [
        ('--baz a --baz b', NS(baz=['X', 'a', 'b'])),
    ]
History
Date User Action Args
2013-04-04 02:21:12paul.j3setrecipients: + paul.j3, bethard, r.david.murray, docs@python, Markus.Amalthea.Magnuson
2013-04-04 02:21:12paul.j3setmessageid: <1365042072.82.0.103989209443.issue16399@psf.upfronthosting.co.za>
2013-04-04 02:21:12paul.j3linkissue16399 messages
2013-04-04 02:21:12paul.j3create