diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/lib/argparse_oe.py | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/scripts/lib/argparse_oe.py b/scripts/lib/argparse_oe.py index c2fee6de05..ec7eb8d191 100644 --- a/scripts/lib/argparse_oe.py +++ b/scripts/lib/argparse_oe.py | |||
@@ -9,3 +9,42 @@ class ArgumentParser(argparse.ArgumentParser): | |||
9 | self.print_help() | 9 | self.print_help() |
10 | sys.exit(2) | 10 | sys.exit(2) |
11 | 11 | ||
12 | def add_subparsers(self, *args, **kwargs): | ||
13 | ret = super(ArgumentParser, self).add_subparsers(*args, **kwargs) | ||
14 | ret._parser_class = ArgumentSubParser | ||
15 | return ret | ||
16 | |||
17 | class ArgumentSubParser(ArgumentParser): | ||
18 | def parse_known_args(self, args=None, namespace=None): | ||
19 | # This works around argparse not handling optional positional arguments being | ||
20 | # intermixed with other options. A pretty horrible hack, but we're not left | ||
21 | # with much choice given that the bug in argparse exists and it's difficult | ||
22 | # to subclass. | ||
23 | # Borrowed from http://stackoverflow.com/questions/20165843/argparse-how-to-handle-variable-number-of-arguments-nargs | ||
24 | # with an extra workaround (in format_help() below) for the positional | ||
25 | # arguments disappearing from the --help output, as well as structural tweaks. | ||
26 | # Originally simplified from http://bugs.python.org/file30204/test_intermixed.py | ||
27 | positionals = self._get_positional_actions() | ||
28 | for action in positionals: | ||
29 | # deactivate positionals | ||
30 | action.save_nargs = action.nargs | ||
31 | action.nargs = 0 | ||
32 | |||
33 | namespace, remaining_args = super(ArgumentSubParser, self).parse_known_args(args, namespace) | ||
34 | for action in positionals: | ||
35 | # remove the empty positional values from namespace | ||
36 | if hasattr(namespace, action.dest): | ||
37 | delattr(namespace, action.dest) | ||
38 | for action in positionals: | ||
39 | action.nargs = action.save_nargs | ||
40 | # parse positionals | ||
41 | namespace, extras = super(ArgumentSubParser, self).parse_known_args(remaining_args, namespace) | ||
42 | return namespace, extras | ||
43 | |||
44 | def format_help(self): | ||
45 | # Quick, restore the positionals! | ||
46 | positionals = self._get_positional_actions() | ||
47 | for action in positionals: | ||
48 | if hasattr(action, 'save_nargs'): | ||
49 | action.nargs = action.save_nargs | ||
50 | return super(ArgumentParser, self).format_help() | ||