Skip to content

argparse metavar parentheses dropped on usage line #101979

Closed
@tonyle72

Description

@tonyle72

Parentheses in argparse metavars are dropped on the usage line but appear as expected in the argument list. In particular, the very first and very last parentheses disappear. It looks from other issues (e.g. #56083) that braces, brackets and parentheses in metavars are problematic, so this may be part of a wider and more difficult set of puzzlers to fix.

Illustrative code:

#!/usr/bin/python3
"""Demonstrate parenthesis drops in argparse metavar."""
import argparse

# The very first and last parentheses disappear in the usage line, but are
# present in the argument list.
parser = argparse.ArgumentParser(
    description='Demonstrate parenthesis drops in argument meta-descriptions')
parser.add_argument(
    'positional',
    help='positional argument',
    metavar='(example) positional')
parser.add_argument(
    '-p',
    '--optional',
    help='optional argument',
    type=int,
    choices=[1, 2],
    metavar='{1 (option A), 2 (option B)}',
    default=1)
arguments = parser.parse_args()

print(arguments)

When this is run with -h, the help text is rendered as shown below. Note the parentheses are missing before option A and after example:

usage: parens.py [-h] [-p {1 option A), 2 (option B)}] (example positional

Demonstrate parenthesis drops in argument meta-descriptions

positional arguments:
  (example) positional  positional argument

optional arguments:
  -h, --help            show this help message and exit
  -p {1 (option A), 2 (option B)}, --optional {1 (option A), 2 (option B)}
                        optional argument

I've tried this on Python 3.8.10 and Python 3.10.6.

Linked PRs

Metadata

Metadata

Assignees

No one assigned

    Labels

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

    Projects

    Status

    Doc issues

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions