[issue15847] parse_args stopped accepting tuples

Steven Bethard report at bugs.python.org
Sun Sep 2 19:37:55 CEST 2012


Steven Bethard added the comment:

The fix looks about right to me.

There's a bug in the tests though:

    parser.parse_args(('x'))

should probably be:

    parser.parse_args(('x',))

since I assume the intent was to test tuples.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue15847>
_______________________________________


More information about the Python-bugs-list mailing list