This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jzwinck
Recipients jzwinck
Date 2014-01-29.02:52:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1390963954.16.0.426686215118.issue20430@psf.upfronthosting.co.za>
In-reply-to
Content
argparse.SUPPRESS is a special object which can be used in various parts of argparse to say "do nothing."  One place where it does not seem to work is in an argument's "dest".  This is despite some of the plumbing using "dest=SUPPRESS" internally.  It can be made to work by patching argparse._StoreAction.__call__, like this:

 def __call__(self, parser, namespace, values, option_string=None):
-    setattr(namespace, self.dest, values)
+    if self.dest is not argparse.SUPPRESS:
+        setattr(namespace, self.dest, values)

Once that's done, this works as one might expect:

parser.add_argument('--foo', dest=argparse.SUPPRESS)

With the patch, 'foo' will not appear if you parse args containing "--foo bar".  Without the patch, args looks like this, which is not really useful:

Namespace(==SUPPRESS==='bar')

Note that the _SubParsersAction.__call__ code has something like the above patch already.
History
Date User Action Args
2014-01-29 02:52:34jzwincksetrecipients: + jzwinck
2014-01-29 02:52:34jzwincksetmessageid: <1390963954.16.0.426686215118.issue20430@psf.upfronthosting.co.za>
2014-01-29 02:52:33jzwincklinkissue20430 messages
2014-01-29 02:52:33jzwinckcreate