Searched refs:exit_on_error (Results 1 – 10 of 10) sorted by relevance
202 def __init__(self, exit_on_error, printer_fn): argument204 self.exit_on_error = exit_on_error209 if self.exit_on_error and rc != 0:
27 extern int exit_on_error;61 if (exit_on_error) { \
122 int exit_on_error = FALSE; variable6082 exit_on_error = TRUE; in main()
252 exit_on_error = kwargs.pop('exit_on_error', True)256 self.exit_on_error = exit_on_error414 def command(self, command, exit_on_error=True): argument417 self._actions.append(Command(command, exit_on_error=exit_on_error))
104 if not command.exit_on_error:
142 if not command.exit_on_error:
1706 exit_on_error=True): argument1725 self.exit_on_error = exit_on_error1856 if self.exit_on_error:
145 add_help=True, allow_abbrev=True, exit_on_error=True)194 *exit_on_error* parameter was added.657 exit_on_error section in ArgumentParser objects664 ``exit_on_error`` to ``False``::666 >>> parser = argparse.ArgumentParser(exit_on_error=False)
5514 self.parser = argparse.ArgumentParser(exit_on_error=False)
2122 Add optional keyword argument ``exit_on_error`` for :class:`ArgumentParser`.