Steven Bethard <steven.beth...@gmail.com> added the comment:

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)

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue13584>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to