New submission from Artem Ustinov:
I'm trying to automate the Python uninstallation on mac but I've found that the
actual installation location is not stored for Python packages.
That location is required since the pkgutil keeps track of installed files (if
you run $ pkgut
Artem Ustinov added the comment:
It does the trick with optionals but not the positionals.
How the positional arguments can be removed/hidden?
--
___
Python tracker
<http://bugs.python.org/issue19
Artem Ustinov added the comment:
What is the way to 'hide' the argument from being parsed?
E.g. we have self.parser.add_argument('foo') in parent class,
how can we modify it in child class so that it would not to
appear in --help strings and not populated
Artem Ustinov added the comment:
Paul,
essentialy, what i looking for is to replace the 'help' string of the
inherited argument with the new one. If you say it could be changed without
any effect so what would be the proper way to do it using argpa
Artem Ustinov added the comment:
Explicitly substitute, excuse me
On 31 Oct 2013 20:11, "Artem Ustinov" wrote:
>
> Artem Ustinov added the comment:
>
> We need argparse to raise an error for conflicting options and that's why
> we need to implicitly substitute an
Artem Ustinov added the comment:
We need argparse to raise an error for conflicting options and that's why
we need to implicitly substitute an option when we need it
On 31 Oct 2013 19:54, "R. David Murray" wrote:
>
> R. David Murray added the comment:
>
> Doe
New submission from Artem Ustinov:
In order to migrate from optparse to argparse we need to have an ability to
substitute anguments, e.g. remove and then create.
In our framework we use the command line utility base class and then inherit
the particular tools from it. The parser in base class