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 bethard
Recipients Phillip.M.Feldman, bethard
Date 2011-12-15.10:22:33
SpamBayes Score 2.2893573e-05
Marked as misclassified No
Message-id <1323944554.43.0.11090378328.issue13584@psf.upfronthosting.co.za>
In-reply-to
Content
Can you submit some example code that shows this? I can't reproduce this with:

---------- temp.py ----------
import argparse

parser = argparse.ArgumentParser()
parser.add_argument("--ng", action="store_true")
parser.add_argument("--INP")
print(parser.parse_args())
------------------------------

$ python temp.py --ng --INP="Demo IO"
Namespace(INP='Demo IO', ng=True)
History
Date User Action Args
2011-12-15 10:22:34bethardsetrecipients: + bethard, Phillip.M.Feldman
2011-12-15 10:22:34bethardsetmessageid: <1323944554.43.0.11090378328.issue13584@psf.upfronthosting.co.za>
2011-12-15 10:22:33bethardlinkissue13584 messages
2011-12-15 10:22:33bethardcreate