1. 32acc16 Merge typo and grammar fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  2. 2e4571a Fix a few grammar problems in the documentation and comments by Martin Panter · 9 years ago
  3. ecb75e2 Issue #23062: Add a test for suppressing --version with argparse.SUPPRESS. by Berker Peksag · 9 years ago
  4. 82c920c Issue #23062: Add a test for suppressing --version with argparse.SUPPRESS. by Berker Peksag · 9 years ago
  5. 8089cd6 Issue #14910: Add allow_abbrev parameter to argparse.ArgumentParser. by Berker Peksag · 9 years ago
  6. 08448a1 Issue #23326: Removed __ne__ implementations. Since fixing default __ne__ by Serhiy Storchaka · 9 years ago
  7. 610bc6a merge 3.4 (#23221) by Benjamin Peterson · 10 years ago
  8. 82f34ad fix instances of consecutive articles (closes #23221) by Benjamin Peterson · 10 years ago
  9. afce02e Merge: #9351: set_defaults on subparser is no longer ignored if set on parent. by R David Murray · 10 years ago
  10. 7570cbd #9351: set_defaults on subparser is no longer ignored if set on parent. by R David Murray · 10 years ago
  11. 0020d8e #11955: merge with 3.4. by Ezio Melotti · 10 years ago
  12. 12b7f48 #11955: show the list of args in case of error in test_argparse. by Ezio Melotti · 10 years ago
  13. 1c5f56a Issue #9554: Use modern unittest features in test_argparse. by Berker Peksag · 10 years ago
  14. dea46ec Issue #21481: Teach argparse equality tests to return NotImplemented when comparing to unknown types. by Raymond Hettinger · 10 years ago
  15. 511e222 make temporary read-only files writable, so rmtree can remove them (#21128) by Benjamin Peterson · 10 years ago
  16. 123e6d5 Issue #13107: argparse and optparse no longer raises an exception when output by Serhiy Storchaka · 11 years ago
  17. f451112 Issue #13107: argparse and optparse no longer raises an exception when output by Serhiy Storchaka · 11 years ago
  18. cdac551 Issue #18920: argparse's default version action (for -v, --version) should by Eli Bendersky · 11 years ago
  19. 74d6c25 #11175: argparse.FileType now accepts encoding and errors arguments. by Petri Lehtinen · 12 years ago
  20. d89774e Merge 3.2 fix updates and tests for issue #15906. by Barry Warsaw · 12 years ago
  21. eaae1b7 A follow up for issue #15906: change the test for calling the type conversion by Barry Warsaw · 12 years ago
  22. 0ae066b - Issue #15906: Fix a regression in argparse caused by the preceding change, by Barry Warsaw · 12 years ago
  23. 4b2f9e9 - Issue #15906: Fix a regression in argparse caused by the preceding change, by Barry Warsaw · 12 years ago
  24. 63755f3 merge #15847: allow args to be a tuple in parse_args by R David Murray · 12 years ago
  25. b522828 #15847: allow args to be a tuple in parse_args by R David Murray · 12 years ago
  26. 64b0ef1 Merge #12776,#11839: call argparse type function only once. by R David Murray · 12 years ago
  27. 6fb8fb1 #12776,#11839: call argparse type function only once. by R David Murray · 12 years ago
  28. 45ccf03 Merge #13922: argparse no longer incorrectly strips '--' after the first one. by R David Murray · 12 years ago
  29. 00528e8 #13922: argparse no longer incorrectly strips '--' after the first one. by R David Murray · 12 years ago
  30. d4703d1 Merge #12353: argparse now correctly handles null argument values. by R David Murray · 12 years ago
  31. b94082a #12353: argparse now correctly handles null argument values. by R David Murray · 12 years ago
  32. af1adbe Issue #13248: argparse: Remove obsolete argument "version" of ArgumentParser. by Florent Xicluna · 12 years ago
  33. ee91e09 #11906 Make test_argparse work interactively by removing extra space by Terry Jan Reedy · 13 years ago
  34. 8d17234 Merge with 3.2 by Terry Jan Reedy · 13 years ago
  35. 242b6ea (Merge 3.2) Close #13401: Skip TestFileTypeW of test_argparse if the current user is root by Victor Stinner · 13 years ago
  36. a04b39b Close #13401: Skip TestFileTypeW of test_argparse if the current user is root by Victor Stinner · 13 years ago
  37. f97c59a #10424: argument names are now included in the missing argument message by R David Murray · 13 years ago
  38. 7c8ea37 Issue #9347: Fix formatting for tuples in argparse type= error messages. by Steven Bethard · 13 years ago
  39. 7cb20a8 Issue #9347: Fix formatting for tuples in argparse type= error messages. by Steven Bethard · 13 years ago
  40. 4ad8f66 Issue #9026: Fix order of argparse sub-commands in help messages. (Merged from 3.2.) by Steven Bethard · 13 years ago
  41. 8a6a198 Issue #9026: Fix order of argparse sub-commands in help messages. by Steven Bethard · 13 years ago
  42. edbe4c5 Issue #9348: Raise an early error if argparse nargs and metavar don't match. (Merge from 3.2.) by Steven Bethard · 13 years ago
  43. 8d9a462 Issue #9348: Raise an early error if argparse nargs and metavar don't match. by Steven Bethard · 13 years ago
  44. 0331e90 Issue #11174: Add argparse.MetavarTypeHelpFormatter, which uses type names by Steven Bethard · 13 years ago
  45. 8f36af7 Normalize the encoding names for Latin-1 and UTF-8 to 'latin-1' and 'utf-8'. by Marc-André Lemburg · 13 years ago
  46. 0f6b47a #10680: fix mutually exclusive arguments in argument groups. by Georg Brandl · 13 years ago
  47. b027011 Issue #9509: make argarse properly handle IOErrors raised by argparse.FileType. Approved by Georg in the tracker. by Steven Bethard · 13 years ago
  48. fd311a7 Add subparser aliases for argparse. Resolves issue 9324. Approved by Georg for beta2 on the tracker. by Steven Bethard · 14 years ago
  49. 1215915 Use proper plural forms in argparse (#4391) by Éric Araujo · 14 years ago
  50. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  51. 722b5fd Make test class name unique so that both test classes run. by R. David Murray · 14 years ago
  52. fca2e8a Fix bug 9340 - argparse parse_known_args didn't work with subparsers by Steven Bethard · 14 years ago
  53. 49998ee Fix for issue 9355 where with multiple mutually exclusive arguments, some brackets were being lost in the usage messages by Steven Bethard · 14 years ago
  54. 1ca45a5 Fix bug 9352 where characters were being lost in parsing some short options by Steven Bethard · 14 years ago
  55. 72c5538 Get argparse.__all__ back up to date (issue 9353) by Steven Bethard · 14 years ago
  56. 1f1c247 Unset COLUMNS for test_argparse (and restore afterwards) (issue 9553) by Steven Bethard · 14 years ago
  57. b86680e Explicitly close some files (from issue #10093) by Antoine Pitrou · 14 years ago
  58. 88c49fe #9444: use first of prefix_chars for help opt instead of raising error by R. David Murray · 14 years ago
  59. 50fe593 Merged revisions 81492 via svnmerge from by Steven Bethard · 14 years ago
  60. b48af54 Merged revisions 79464,79471,79623,79626,79630,79632,79643,79648-79649,79679,79685,79711,79761,79774,79777,79792-79794,79877,79898-79900 via svnmerge from by Benjamin Peterson · 14 years ago
  61. 41fe615 (partially) by Florent Xicluna · 14 years ago
  62. cd4ec0e Merged revisions 79388 via svnmerge from by Steven Bethard · 14 years ago
  63. 4fd181c Merged revisions 78604 via svnmerge from by Benjamin Peterson · 14 years ago
  64. 16f2fd0 Merged revisions 78600-78601 via svnmerge from by Benjamin Peterson · 14 years ago
  65. 698a18a Merged revisions 78586-78593 via svnmerge from by Benjamin Peterson · 14 years ago
  66. 6d26569 Merged revisions 78576 via svnmerge from by Steven Bethard · 14 years ago