[issue14037] Allow grouping of argparse subparser commands in help output

2013-01-29 Thread Bartosz S
Changes by Bartosz S tosz...@gmail.com: -- nosy: +toszter ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14037 ___ ___ Python-bugs-list mailing

[issue14037] Allow grouping of argparse subparser commands in help output

2013-01-29 Thread Chris Jerdonek
Changes by Chris Jerdonek chris.jerdo...@gmail.com: -- nosy: +chris.jerdonek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14037 ___ ___

[issue14037] Allow grouping of argparse subparser commands in help output

2012-02-16 Thread Nick Coghlan
New submission from Nick Coghlan ncogh...@gmail.com: I've just started using the argparse subparser feature, and it's very nice. However, I'd love to be able to group the different subparser commands into different sections the way I can group ordinary arguments with add_argument_group().

[issue14037] Allow grouping of argparse subparser commands in help output

2012-02-16 Thread Nick Coghlan
Nick Coghlan ncogh...@gmail.com added the comment: I realised that my initial idea doesn't play nicely with my other suggestion of allowing a metavar argument to add_subparsers() (see #14039). A better model may be to mimic the add_argument_group() directly by offering an add_parser_group()