summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_argparse.py
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-121018: Ensure ArgumentParser.parse_args with exit_on_error=False r...Miss Islington (bot)2024-06-261-0/+3
* gh-62090: Simplify argparse usage formatting (GH-105039)Ali Hamdan2024-05-071-0/+134
* gh-96310: Fix a traceback in argparse when all options in a mutually exclusiv...Daniel Mach2024-02-211-0/+21
* gh-60346: Improve handling single-dash options in ArgumentParser.parse_known_...Serhiy Storchaka2024-02-191-0/+28
* gh-83648: Support deprecation of options, arguments and subcommands in argpar...Serhiy Storchaka2024-02-051-2/+137
* gh-109475: Fix support of explicit option value "--" in argparse (GH-114814)Serhiy Storchaka2024-02-051-0/+16
* gh-101599: argparse: simplify the option help string (GH-103372)Jokimax2024-02-021-3/+3
* gh-103558: Add coverage tests for argparse (#103570)Tian Gao2023-06-051-1/+85
* gh-92248: Deprecate `type`, `choices`, `metavar` parameters of `argparse.Bool...Nikita Sobolev2023-05-191-0/+43
* gh-101640: Make argparse _print_message catch any write error (#101802)Oleg Iarygin2023-05-061-0/+31
* gh-101979: argparse: fix a bug where parentheses in metavar argument of add_a...Yeojin Kim2023-03-051-0/+22
* gh-80448: argparse: Fix IndexError on store_true action (#15656)Hai Shi2022-11-121-1/+1
* gh-92445 Improve interaction between nargs="*" and choices() (GH-92565)Harry2022-08-251-0/+7
* gh-94315: Check for DAC override capability (GH-94316)Christian Heimes2022-06-271-8/+5
* gh-85308: Add argparse tests for reading non-ASCII arguments from file (GH-94...Serhiy Storchaka2022-06-241-12/+23
* gh-90473: Make chmod a dummy on WASI, skip chmod tests (GH-93534)Christian Heimes2022-06-061-0/+1
* bpo-45046: Support context managers in unittest (GH-28045)Serhiy Storchaka2022-05-081-4/+2
* gh-88753: Make BooleanOptionalAction's addition of default to help more simil...Toshio Kuratomi2022-05-031-11/+15
* bpo-39716: Raise on conflicting subparser names. (GH-18605)Antony Lee2022-05-011-0/+13
* gh-91832: Add 'required' attr to argparse.Action repr (GH-91841)Abhigyan Bose2022-04-281-2/+4
* gh-91984: Fix trailing spaces in multiline test strings in test_argparse (GH-...Abhigyan Bose2022-04-281-4/+2
* bpo-14156: Make argparse.FileType work correctly for binary file modes when a...MojoVampire2022-03-061-13/+102
* bpo-46080: fix argparse help generation exception in edge case (GH-30111)Felix Fontein2022-01-201-2/+5
* bpo-46411: Remove unnecessary calls to sys.exc_info() in tests (GH-30638)Irit Katriel2022-01-181-6/+4
* bpo-22047: [argparse] deprecate nested argument groups and mutually exclusive...Irit Katriel2021-12-161-2/+12
* bpo-26952: [argparse] clearer error when formatting an empty mutually… (GH-...Irit Katriel2021-12-151-0/+7
* bpo-45235: Revert an argparse bugfix that caused a regression (GH-29525)Raymond Hettinger2021-11-121-6/+0
* bpo-24444: fix an error in argparse help when help for an option is blank (GH...andrei kulakov2021-10-131-0/+36
* bpo-45229: Remove test_main in many tests (GH-28405)Serhiy Storchaka2021-09-191-5/+2
* bpo-45235: Fix argparse overrides namespace with subparser defaults (GH-28420)Adam Schwalm2021-09-181-0/+6
* bpo-38956: don't print BooleanOptionalAction's default twice (GH-27672)Maximilian Hils2021-08-161-7/+14
* bpo-37880: for argparse add_argument with action='store_const', const now def...Jack DeVries2021-07-311-0/+19
* bpo-29298: Fix crash with required subparsers without dest (GH-3680)Anthony Sottile2021-07-231-0/+24
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25142)Inada Naoki2021-04-021-6/+8
* bpo-9694: Fix misleading phrase "optional arguments" (GH-23858)Raymond Hettinger2020-12-231-56/+56
* bpo-40275: Use new test.support helper submodules in tests (GH-21448)Hai Shi2020-08-031-2/+3
* bpo-40862: Raise TypeError when const is given to argparse.BooleanOptionalAct...Rémi Lapeyre2020-06-051-0/+8
* bpo-39058: Preserve attribute order in argparse Namespace reprs. (GH-17621)Raymond Hettinger2020-05-181-1/+1
* bpo-9495: avoid confusing chained exception in argparse test (GH-17120)alclarks2020-02-211-1/+2
* bpo-39546: argparse: Honor allow_abbrev=False for specified prefix_chars (GH-...Kyle Meyer2020-02-181-0/+37
* bpo-38438: Simplify argparse "star nargs" usage. (GH-17106)Brandt Bucher2019-11-111-7/+7
* bpo-8538: Add support for boolean actions to argparse (GH-11478)Rémi Lapeyre2019-09-131-11/+45
* bpo-9938: Add optional keyword argument exit_on_error to argparse.ArgumentPar...Hai Shi2019-09-121-0/+15
* bpo-29553: Fix ArgumentParser.format_usage() for mutually exclusive groups (G...Flavian Hautbois2019-08-251-0/+40
* bpo-16970: Adding error message for invalid args (GH-14844)tmblweed2019-08-021-1/+29
* bpo-26967: fix flag grouping with allow_abbrev=False (GH-14316)Zac Hatfield-Dodds2019-07-141-0/+19
* Remove unused imports in tests (GH-14518)Victor Stinner2019-07-011-1/+0
* bpo-37150: Throw ValueError if FileType class object was passed in add_argume...zygocephalus2019-06-071-0/+18
* bpo-23378: Add an extend action to argparse (GH-13305)Batuhan Taşkaya2019-05-211-0/+9
* bpo-22831: Use "with" to avoid possible fd leaks in tests (part 2). (GH-10929)Serhiy Storchaka2019-03-051-12/+8