summaryrefslogtreecommitdiffstats
path: root/Doc/library/argparse.rst
Commit message (Collapse)AuthorAgeFilesLines
* Fix Issue #21528 - Fix documentation typosDonald Stufft2014-05-201-1/+1
|
* Issue #23921: Standardized documentation whitespace formatting.Serhiy Storchaka2016-05-101-9/+9
| | | | Original patch by James Edwards.
* Issue #20598: Replace trivial split() calls with lists in argparse docsMartin Panter2016-04-261-23/+23
|
* Fix typos in code comment and documentationMartin Panter2016-04-161-1/+1
|
* Issue #25314: Remove confused statement about const argumentMartin Panter2016-04-091-3/+3
|
* Issue #25161: Add full stops in documentation; patch by Takase ArihiroMartin Panter2015-10-101-1/+1
|
* Issue #23356: Simplify convert_arg_line_to_args example.Berker Peksag2015-04-261-4/+1
| | | | Patch by py.user.
* Issue #22317: Document the action parameter in ↵Berker Peksag2015-01-201-3/+6
| | | | | | ArgumentParser.add_subparsers() docs. Patch by Mike Short.
* Fix a markup error in the argparse documentation.Berker Peksag2015-01-061-2/+2
| | | | Reported by Jason Sachs on docs@.
* Issue #17462: Add a paragraph about advantages of argparse over optparse.Berker Peksag2014-09-261-0/+10
| | | | Patch by Anastasia Filatova.
* the correct role is :meth: not :method:Benjamin Peterson2014-09-041-8/+6
|
* Issue #13540: Merge commitsJason R. Coombs2014-08-031-19/+53
|\
| * Issue #13540: Update references to Action class to match syntax used for ↵Jason R. Coombs2014-08-031-2/+2
| | | | | | | | other classes in this file.
| * Issue #13540: Removed redundant documentation about Action instance ↵Jason R. Coombs2014-07-201-49/+26
| | | | | | | | attributes. Updated example and documentation per recommendations by Steven Bethard in msg149524.
| * Issue #13540: Expanded argparse documents to clarify the action APIJason R. Coombs2011-12-141-19/+76
| |
* | Issue #19814: Clarify argparse's docs w.r.t prefix matchingEli Bendersky2013-12-021-3/+11
| |
* | Use the platform-independent way of calling a script from the shell: "python ↵Georg Brandl2013-10-061-4/+4
| | | | | | | | | | | | prog.py", not "prog.py" Found by Micheal Wells on docs@.
* | Closes #11807: document argparse add_subparsers method better.Georg Brandl2013-10-061-1/+28
| | | | | | | | Patch by Filip Gruszczyński.
* | Fix missing class name in markup. Found by Tanky Woo on docs@.Georg Brandl2013-10-061-1/+1
| |
* | Fix prefix_chars not being applied in help text example (reported by John ↵Georg Brandl2013-10-061-2/+2
| | | | | | | | Kooker on docs@)
* | Update argparse docs to follow order of ArgumentParser() arguments.Andrew Svetlov2013-04-071-202/+203
| |
* | #16940: fix indentation in example.Ezio Melotti2013-01-121-2/+2
| |
* | Issue #16933: Improve choices examples in argparse documentation.Chris Jerdonek2013-01-121-23/+24
| |
* | grammatical fix; thanks to Alex Rudnick from docs@Sandro Tosi2013-01-111-1/+1
| |
* | #16796: fix typo. Patch by Michael Schurter.Ezio Melotti2012-12-271-1/+1
| |
* | - Issue #15935: Clarification of argparse docs, re: add_argument() type andBarry Warsaw2012-09-251-0/+14
| | | | | | | | default arguments. Patch contributed by Chris Jerdonek.
* | #15831: document multiple signatures on different lines. Patch by Chris ↵Ezio Melotti2012-09-141-3/+6
| | | | | | | | Jerdonek.
* | add missing parenthesis to 'action' argparse doc; thanks to kishkin from docs@Sandro Tosi2012-08-121-1/+1
| |
* | #14034: added the argparse tutorial. Patch by Tshepang Lekhonkhobe.Ezio Melotti2012-05-061-0/+6
| |
* | #10423: clarify options vs args in argparse discussion of optparseR David Murray2012-03-301-2/+3
| | | | | | | | Patch by Sandro Tosi.
* | Issue #14410: fix typo in argparse doc; patch by Tshepang LekhonkhobeSandro Tosi2012-03-261-2/+2
| |
* | Add missing “::” markup and wrap overlong linesÉric Araujo2012-02-201-18/+23
| |
* | Issue #13605: more meaningful example + fixesSandro Tosi2012-01-191-5/+5
| |
* | Issue #13605: add documentation for nargs=argparse.REMAINDERSandro Tosi2012-01-191-0/+11
| |
* | Issue #10772: add count and help argparse action; patch by Marc SibsonSandro Tosi2012-01-041-0/+13
| |
* | Issue #9349: add argparse.SUPPRESS to help docSandro Tosi2012-01-031-0/+11
|/
* Note the store_true and store_false also create the appropriate defaults.Raymond Hettinger2011-11-201-4/+6
|
* Issue #13191: typo in argparse docsEli Bendersky2011-11-111-1/+1
|
* Fix some markup and one typoÉric Araujo2011-09-011-1/+1
|
* Backport source links from 3.x.Éric Araujo2011-08-191-1/+5
| | | | | Existing links have been updated to use the new reST role. In some files, I have also made cosmetic changes to the header.
* Synchronize argparse docs with 3.x versionsÉric Araujo2011-08-191-52/+52
|
* Fix closes issue12663 - Correcting the ArgumentParser.error description. ↵Senthil Kumaran2011-08-021-1/+1
| | | | Patch by Sandro Tosi.
* Add a link target for argparse.Namespace (#8982)Éric Araujo2011-07-291-7/+10
|
* Fix some more markup glitches in argparse doc.Ezio Melotti2011-04-211-98/+110
|
* The \ is not supported in Sphinx 0.6.Ezio Melotti2011-04-211-6/+2
|
* #11905: fix missing full stop in argparse doc. Noticed by Vladimir Rutsky.Ezio Melotti2011-04-211-1/+1
|
* #11904: fix indentation in argparse doc. Noticed by Vladimir Rutsky.Ezio Melotti2011-04-211-4/+4
|
* #11902: Fix typo in argparse doc. Noticed by Vladimir Rutsky.Ezio Melotti2011-04-211-1/+1
|
* Add the :mod: role where it was missing.Ezio Melotti2011-04-211-11/+11
|
* #11885: capitalize Python.Ezio Melotti2011-04-211-2/+2
|