summaryrefslogtreecommitdiffstats
path: root/Lib/argparse.py
Commit message (Expand)AuthorAgeFilesLines
* GH-127133: Remove ability to nest argument groups & mutually exclusive groups...Savannah Ostrowski2024-11-241-17/+3
* gh-86463: Fix default prog in subparsers if usage is used in the main parser ...Serhiy Storchaka2024-11-221-1/+1
* gh-117941: Reject option names starting with "--no-" in argparse.BooleanOptio...Serhiy Storchaka2024-11-111-0/+3
* gh-126068: Fix exceptions in the argparse module (GH-126069)Serhiy Storchaka2024-10-301-26/+22
* gh-58032: Deprecate the argparse.FileType type converter (GH-124664)Serhiy Storchaka2024-10-231-5/+13
* gh-125355: Rewrite parse_intermixed_args() in argparse (GH-125356)Serhiy Storchaka2024-10-221-65/+34
* gh-125542: Deprecate prefix_chars in ArgumentParser.add_argument_group() (GH-...Savannah Ostrowski2024-10-171-0/+8
* GH-99749: Add optional feature to suggest correct names (ArgumentParser) (GH-...Savannah Ostrowski2024-10-171-9/+26
* gh-86357: argparse: use str() consistently and explicitly to print choices (G...rindeal2024-10-141-7/+5
* gh-85935: Check for nargs=0 for positional arguments in argparse (GH-124839)Serhiy Storchaka2024-10-121-1/+9
* gh-125254: Fix error report about ambiguous option in argparse (GH-125273)Serhiy Storchaka2024-10-121-1/+1
* gh-59330: Improve error message for dest= for positionals (GH-125215)Serhiy Storchaka2024-10-121-1/+2
* gh-65865: Raise early errors for invalid help strings in argparse (GH-124899)Serhiy Storchaka2024-10-121-7/+24
* gh-61011: Fix inheritance of nested mutually exclusive groups in argparse (GH...Serhiy Storchaka2024-10-111-1/+5
* GH-124693: Support parsing negative scientific and complex numbers argparse (...Savannah Ostrowski2024-10-091-1/+1
* gh-58282: Fix support of tuple metavar for positional arguments in argparse (...Serhiy Storchaka2024-10-021-3/+10
* gh-66436: Improved prog default value for argparse.ArgumentParser (GH-124799)Serhiy Storchaka2024-10-011-5/+23
* gh-58573: Fix conflicts between abbreviated long options in the parent parser...Serhiy Storchaka2024-09-291-34/+28
* gh-116850: Fix argparse for namespaces with not directly writable dict (GH-12...Serhiy Storchaka2024-09-291-1/+2
* gh-61181: Fix support of choices with string value in argparse (GH-124578)Serhiy Storchaka2024-09-291-5/+9
* gh-53834: Fix support of arguments with choices in argparse (GH-124495)Serhiy Storchaka2024-09-291-5/+1
* gh-124345: Support abbreviated single-dash long options with = in argparse (G...Serhiy Storchaka2024-09-291-2/+4
* gh-80259: Fix conflict between type and default=SUPPRESS in argparse (GH-124519)Serhiy Storchaka2024-09-291-1/+1
* gh-104860: Fix allow_abbrev=False for single-dash long options (GH-124340)Serhiy Storchaka2024-09-291-1/+1
* bpo-44864: Do not translate user-provided strings in ArgumentParser.add_subpa...Jérémie Detrey2024-09-241-2/+2
* gh-113008: Correct argparse usage output for required, mutually exclusive gr...Payton2024-09-241-2/+2
* gh-59317: Improve parsing optional positional arguments in argparse (GH-124303)Serhiy Storchaka2024-09-241-6/+7
* gh-72795: Make positional arguments with nargs='*' or REMAINDER non-required ...Serhiy Storchaka2024-09-241-3/+2
* gh-53780: Ignore the first "--" (double dash) between an option and command i...Serhiy Storchaka2024-09-241-4/+8
* gh-63143: Fix parsing mutually exclusive arguments in argparse (GH-124307)Serhiy Storchaka2024-09-241-3/+2
* GH-87041: Fix incorrect indentation in argparse help (GH-124230)Savannah Ostrowski2024-09-231-4/+3
* GH-124321: Fix argparse negative number parsing to capture -.5(GH-124322)Savannah Ostrowski2024-09-231-1/+1
* gh-81691: Fix handling of multiple "--" (double dashes) in argparse (GH-124233)Serhiy Storchaka2024-09-201-7/+5
* GH-123945: Update regex for parsing negative numbers that contain underscores...Savannah Ostrowski2024-09-171-1/+1
* gh-121151: argparse: Fix wrapping of long usage text of arguments inside a mu...Ali Hamdan2024-08-071-3/+12
* gh-121018: Fix more cases of exiting in argparse when exit_on_error=False (GH...Serhiy Storchaka2024-06-281-9/+13
* gh-121018: Ensure ArgumentParser.parse_args with exit_on_error=False raises i...blhsing2024-06-261-2/+4
* gh-118805: Remove type, choices, metavar params of `BooleanOptionalAction` (#...Nikita Sobolev2024-05-091-28/+0
* gh-62090: Simplify argparse usage formatting (GH-105039)Ali Hamdan2024-05-071-72/+28
* gh-116159: argparse: performance improvement parsing large number of options ...Amethyst Reese2024-03-011-4/+5
* bpo-44865: Fix yet one missing translations in argparse (GH-27668)Jérémie Detrey2024-02-261-1/+2
* gh-77956: Add the words 'default' and 'version' help text localizable (GH-12...Emmanuel Arias2024-02-261-2/+4
* gh-96310: Fix a traceback in argparse when all options in a mutually exclusiv...Daniel Mach2024-02-211-0/+2
* argparse: remove incoherent and redundant docstring for private method (GH-10...Frank Dana2024-02-211-8/+0
* gh-60346: Improve handling single-dash options in ArgumentParser.parse_known_...Serhiy Storchaka2024-02-191-23/+28
* gh-83648: Support deprecation of options, arguments and subcommands in argpar...Serhiy Storchaka2024-02-051-24/+68
* gh-109475: Fix support of explicit option value "--" in argparse (GH-114814)Serhiy Storchaka2024-02-051-1/+1
* gh-101599: argparse: simplify the option help string (GH-103372)Jokimax2024-02-021-7/+3
* gh-109653: Defer importing `warnings` in several modules (#110286)Alex Waygood2023-10-041-2/+3
* gh-103558: Add coverage tests for argparse (#103570)Tian Gao2023-06-051-6/+6