[issue39197] argparse: title and description for mutually exclusive arg groups

2020-01-17 Thread paul j3
paul j3 added the comment: https://bugs.python.org/issue9694 is the original issue about the titles of the base argument groups. -- resolution: -> duplicate stage: -> resolved status: open -> closed ___ Python tracker

[issue39197] argparse: title and description for mutually exclusive arg groups

2020-01-17 Thread paul j3
paul j3 added the comment: A mutually_exclusive_group is not an argument_group. It affects parsing and the usage, but does nothing in the help lines. A mutually_exclusive_group may be nested in an argument_group if you want another group title. g1 = parser.add_argument_group('My

[issue39197] argparse: title and description for mutually exclusive arg groups

2020-01-05 Thread hai shi
hai shi added the comment: Do you have user case for it? _ArgumentGroup have the `title` attribute, so _MutuallyExclusiveGroup add same attribute is not a big probleam(if user really need it). -- nosy: +shihai1991 ___ Python tracker

[issue39197] argparse: title and description for mutually exclusive arg groups

2020-01-03 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +rhettinger title: Support the title and description arguments for mutually exclusive argument groups -> argparse: title and description for mutually exclusive arg groups ___ Python tracker