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 <rep...@bugs.python.org>
<http://bugs.python.org/issue15847>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to