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 docs@python, eric.araujo, paul.j3, rhettinger, terry.reedy
Date 2014-04-10.00:12:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1397088727.57.0.268077051074.issue21150@psf.upfronthosting.co.za>
In-reply-to
Content
While 'argparse' is complex, its organization is quite different from 'itertools'.  For most purposes there is one starting point:

    parser = argparse.ArgumentParser(...)

Nearly everything else invokes a 'parser'  method.  Most complex and common is 'add_argument'.

Some summary tables might be useful, but 'itertools' might not be best model.
History
Date User Action Args
2014-04-10 00:12:07paul.j3setrecipients: + paul.j3, rhettinger, terry.reedy, eric.araujo, docs@python
2014-04-10 00:12:07paul.j3setmessageid: <1397088727.57.0.268077051074.issue21150@psf.upfronthosting.co.za>
2014-04-10 00:12:07paul.j3linkissue21150 messages
2014-04-10 00:12:07paul.j3create