Come è possibile disabilitare la stampa delle scelte di sottocomando, quelle tra parentesi graffe? Utilizzando un esempio a http://docs.python.org/dev/library/argparse.html#sub-commands, l'uscita normale è:Nel modulo argparse di python, come posso disabilitare la stampa delle scelte di sottocomando tra parentesi graffe?
usage: [-h] {foo,bar} ...
optional arguments:
-h, --help show this help message and exit
subcommands:
{foo,bar} additional help
Quello che voglio è quello di stampare questa:
usage: [-h] {foo,bar} ...
optional arguments:
-h, --help show this help message and exit
subcommands:
Rimozione solo l'ultima riga.