[issue9537] argparse: use OrderedDict to store subparsers

2010-08-10 Thread Steven Bethard
Steven Bethard added the comment: Duplicate of issue 9026. -- resolution: -> duplicate status: open -> closed superseder: -> argparse subcommands not printed in the same order they were added ___ Python tracker

[issue9537] argparse: use OrderedDict to store subparsers

2010-08-06 Thread R. David Murray
Changes by R. David Murray : -- nosy: +bethard ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue9537] argparse: use OrderedDict to store subparsers

2010-08-06 Thread Eric Smith
Changes by Eric Smith : -- nosy: +eric.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue9537] argparse: use OrderedDict to store subparsers

2010-08-06 Thread Denver Coneybeare
New submission from Denver Coneybeare : Currently, when a subparser is added to an argparse.ArgumentParser the list of subparsers are stored in the built-in dict type. When these subparsers are listed when -h is given on the command line they are showed in the order returned from the dictiona