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 bethard, paul.j3, petri.lehtinen, pwil3058
Date 2014-04-25.05:25:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1398403545.8.0.159474474649.issue11708@psf.upfronthosting.co.za>
In-reply-to
Content
This is a testing script for this patch.  It is not a unit test.
Example:

    p = argparse.ArgumentParser()
    p.formatter_class = argparse.ReGroupHelpFormatter
    p.add_argument('foo')
    p.add_argument('arg1',nargs='?')
    p.add_argument('arg2',nargs='?')
    a = p.add_argument('arg3',nargs='*')
    b = p.add_argument('arg4', nargs='?')
    # usage: regp [-h] foo [arg1 [arg2 [arg3 [arg3 ...] [arg4]]]]
History
Date User Action Args
2014-04-25 05:25:45paul.j3setrecipients: + paul.j3, bethard, pwil3058, petri.lehtinen
2014-04-25 05:25:45paul.j3setmessageid: <1398403545.8.0.159474474649.issue11708@psf.upfronthosting.co.za>
2014-04-25 05:25:45paul.j3linkissue11708 messages
2014-04-25 05:25:45paul.j3create