(self, args, subcommand_table)
| 127 | self._lineage = [self] |
| 128 | |
| 129 | def _parse_potential_subcommand(self, args, subcommand_table): |
| 130 | if subcommand_table: |
| 131 | parser = SubCommandArgParser(self.arg_table, subcommand_table) |
| 132 | return parser.parse_known_args(args) |
| 133 | return None |
| 134 | |
| 135 | def __call__(self, args, parsed_globals): |
| 136 | # args is the remaining unparsed args. |
no test coverage detected