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) { \
121 int exit_on_error = FALSE; variable6081 exit_on_error = TRUE; in main()
219 exit_on_error = kwargs.pop('exit_on_error', True)223 self.exit_on_error = exit_on_error366 def command(self, command, exit_on_error=True): argument369 self._actions.append(Command(command, exit_on_error=exit_on_error))
99 if not command.exit_on_error:
124 if not command.exit_on_error:
1699 exit_on_error=True): argument1718 self.exit_on_error = exit_on_error1849 if self.exit_on_error:
145 add_help=True, allow_abbrev=True, exit_on_error=True)193 *exit_on_error* parameter was added.656 exit_on_error section in ArgumentParser objects663 ``exit_on_error`` to ``False``::665 >>> parser = argparse.ArgumentParser(exit_on_error=False)
5348 self.parser = argparse.ArgumentParser(exit_on_error=False)
2122 Add optional keyword argument ``exit_on_error`` for :class:`ArgumentParser`.