[issue10772] Several actions for argparse arguments missing from docs

2012-01-04 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 278fbd7b9608 by Sandro Tosi in branch '2.7': Issue #10772: add count and help argparse action; patch by Marc Sibson http://hg.python.org/cpython/rev/278fbd7b9608 New changeset 326f755962e3 by Sandro Tosi in branch

[issue10772] Several actions for argparse arguments missing from docs

2012-01-04 Thread Sandro Tosi
Sandro Tosi sandro.t...@gmail.com added the comment: Thanks Marc for the patch, I've just committed it. -- resolution: - fixed stage: commit review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org

[issue10772] Several actions for argparse arguments missing from docs

2011-12-15 Thread Steven Bethard
Steven Bethard steven.beth...@gmail.com added the comment: Looks good to me too. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10772 ___ ___

[issue10772] Several actions for argparse arguments missing from docs

2011-11-18 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Looks good to me. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10772 ___ ___ Python-bugs-list

[issue10772] Several actions for argparse arguments missing from docs

2011-11-18 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: patch review - commit review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10772 ___ ___

[issue10772] Several actions for argparse arguments missing from docs

2011-11-16 Thread Marc Sibson
Marc Sibson sib...@gmail.com added the comment: changes as per the review, -- Added file: http://bugs.python.org/file23713/issue10772.patch3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10772

[issue10772] Several actions for argparse arguments missing from docs

2011-11-15 Thread ipatrol
ipatrol ipatrol6...@yahoo.com added the comment: The patch has been submitted, now we just need to apply it and update the online docs accordingly. -- status: open - pending versions: +Python 3.4 ___ Python tracker rep...@bugs.python.org

[issue10772] Several actions for argparse arguments missing from docs

2011-11-15 Thread Brian Curtin
Changes by Brian Curtin br...@python.org: -- status: pending - open versions: -Python 3.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10772 ___

[issue10772] Several actions for argparse arguments missing from docs

2011-11-15 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: needs patch - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10772 ___ ___

[issue10772] Several actions for argparse arguments missing from docs

2011-11-15 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Ezio made further comments, follow the “review” link. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10772 ___

[issue10772] Several actions for argparse arguments missing from docs

2011-05-31 Thread Sandro Tosi
Changes by Sandro Tosi sandro.t...@gmail.com: -- nosy: +sandro.tosi ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10772 ___ ___ Python-bugs-list

[issue10772] Several actions for argparse arguments missing from docs

2011-05-30 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I would not document 'parsers'. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10772 ___ ___

[issue10772] Several actions for argparse arguments missing from docs

2011-05-30 Thread Marc Sibson
Marc Sibson sib...@gmail.com added the comment: issue10772.patch2: document help and count actions in Doc/library/argparse.rst -- Added file: http://bugs.python.org/file22198/issue10772.patch2 ___ Python tracker rep...@bugs.python.org

[issue10772] Several actions for argparse arguments missing from docs

2011-05-29 Thread Marc Sibson
Marc Sibson sib...@gmail.com added the comment: issue10772.patch: add help, count and parsers to Doc/library/argparse.rst -- keywords: +patch nosy: +marcs Added file: http://bugs.python.org/file22179/issue10772.patch ___ Python tracker

[issue10772] Several actions for argparse arguments missing from docs

2011-03-27 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- keywords: +easy nosy: +eric.araujo stage: - needs patch versions: +Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10772 ___

[issue10772] Several actions for argparse arguments missing from docs

2011-01-02 Thread Steven Bethard
Steven Bethard steven.beth...@gmail.com added the comment: action=help definitely needs to be documented action=count probably should be, though I think it's pretty useless (I just copied it from optparse) action=parsers, nargs=... and nargs=A... I'm not so sure about. These are currently

[issue10772] Several actions for argparse arguments missing from docs

2010-12-31 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- nosy: +bethard versions: +Python 3.2 -Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10772 ___

[issue10772] Several actions for argparse arguments missing from docs

2010-12-25 Thread ipatrol
New submission from ipatrol ipatrol6...@yahoo.com: I actually noticed this while trying to free the -h option for my program. The actions not mentioned are count, help, and parsers. Also for nargs, '...' and 'A...' are not documented either in the Sphinx docs or the leading docstring for the