8000 Argparse: inconsistent default handling between `nargs` values · Issue #132717 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content
Argparse: inconsistent default handling between nargs values #132717
Open
@hansthen

Description

@hansthen

Bug report

Bug description:

import argparse

parser = argparse.ArgumentParser(
    formatter_class=argparse.ArgumentDefaultsHelpFormatter
)

day_names = ["mo", "tu", "we", "th", "fr", "sa", "su"]
days = [1, 2, 3, 4, 5, 6, 7]

def name_day(value):
    return day_names.index(value) + 1

parser.add_argument(
    '--day',
    type=name_day,
    default="mo",
    nargs='?',  
    help="pick a day",
)
args = parser.parse_args()
print(args.day)

Actual results:

The above code block will print the value 1. However, if we change the arguments to

    default=["mo"],
    nargs='+',

The code will print the value ["mo"]. So it seems type conversion does not happen for default arguments when nargs specifies multiple arguments.

Expected results:

The supplied default values are converted, irrespective of the value of nargs.

CPython versions tested on:

3.13, 3.10

Operating systems tested on:

Linux

Linked PRs

Metadata

Metadata

Assignees

No one assigned

    Labels

    stdlibPython modules in the Lib dirtype-bugAn unexpected behavior, bug, or error

    Projects

    Status

    No status

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      0