Apart from tinkering with the argparse source, is there any way to control the exit status code should there be a problem when parse_args() is called, for example, a missing required switch?
|
feedback
|
|
I'm not aware of any mechanism to specify an exit code on a per-argument basis. You can catch the EDIT: For anyone coming to this looking for a practical solution, the following is the situation:
All that means the following code - whilst ugly - allows us to catch the ArgumentError exception, get hold of the offending argument and error message, and do as we see fit:
Not tested in any useful way. The usual don't-blame-me-if-it-beaks indemnity applies. | |||||||||
feedback
|
|
Perhaps catching the
Works for me, even in an interactive session. Edit: Looks like @Rob Cowie beat me to the switch. Like he said, this doesn't have very much diagnostic potential, unless you want get silly and try to glean info from the traceback. | |||
|
feedback
|
|
You'd have to tinker. Look at | |||
|
feedback
|
|
You can use one of the exiting methods: http://docs.python.org/library/argparse.html#exiting-methods. It should already handle situations where the arguments are invalid, however (assuming you have defined your arguments properly). Using invalid arguments:
| ||||
|
feedback
|