diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-09-08 16:14:25 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-09-08 16:14:25 (GMT) |
commit | 63755f3bd94c7e193a44324d3248b2478cbf47fc (patch) | |
tree | 372087e0ce49819a85e04f2fc58df20f36733225 /Lib/test | |
parent | 37a0170fa3e5023952040479675fd2002ffe3592 (diff) | |
parent | b522828d2a6bdc4438441eda837a696851ba4263 (diff) | |
download | cpython-63755f3bd94c7e193a44324d3248b2478cbf47fc.zip cpython-63755f3bd94c7e193a44324d3248b2478cbf47fc.tar.gz cpython-63755f3bd94c7e193a44324d3248b2478cbf47fc.tar.bz2 |
merge #15847: allow args to be a tuple in parse_args
This fixes a regression introduced by the fix for issue #13922. Although args
is not documented as being allowed to be a tuple, previously this worked and
so naturally there are programs in the field that depend on it.
Patch by Zbyszek Jędrzejewski-Szmek.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_argparse.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Lib/test/test_argparse.py b/Lib/test/test_argparse.py index 72060da..caf99af 100644 --- a/Lib/test/test_argparse.py +++ b/Lib/test/test_argparse.py @@ -4613,6 +4613,24 @@ class TestTypeFunctionCallWithNonStringDefault(TestCase): class TestParseKnownArgs(TestCase): + def test_arguments_tuple(self): + parser = argparse.ArgumentParser() + parser.parse_args(()) + + def test_arguments_list(self): + parser = argparse.ArgumentParser() + parser.parse_args([]) + + def test_arguments_tuple_positional(self): + parser = argparse.ArgumentParser() + parser.add_argument('x') + parser.parse_args(('x',)) + + def test_arguments_list_positional(self): + parser = argparse.ArgumentParser() + parser.add_argument('x') + parser.parse_args(['x']) + def test_optionals(self): parser = argparse.ArgumentParser() parser.add_argument('--foo') |