Commit graph

6 commits

Author SHA1 Message Date
Matthew Wild
06994f0bc1 util.argparse: Fix bug (regression?) in argument parsing with --foo=bar
After recent changes, '--foo bar' was working, but '--foo=bar' was not. The
test had a typo (?) (bar != baz) and because util.argparse is not strict by
default, the typo was not caught.

The typo caused the code to take a different path, and bypassed the buggy
handling of --foo=bar options.

I've preserved the existing test (typo and all!) because it's still an
interesting test, and ensures no unintended behaviour changes compared to the
old code.

However I've added a new variant of the test, with strict mode enabled and the
typo fixed. This test failed due to the bug, and this commit introduces a fix.
2025-03-11 18:27:36 +00:00
Matthew Wild
43be6cb1c6 util.argparse: Add strict mode + tests 2025-02-17 18:24:23 +00:00
Kim Alvefur
21740a1382 util.argparse: Add support for repeatable parameters
These are gathered into arrays
2022-01-05 04:46:27 +01:00
Matthew Wild
93347db124 util.argparse: Revise 553c6204fe5b with a different approach
The second return value is (not insensibly) assumed to be an error. Instead of
returning a value there in the success case, copy the positional arguments
into the existing opts table.
2022-04-25 15:24:56 +01:00
Kim Alvefur
21784ddc11 util.argparse: Add test for #1691 2021-10-12 14:54:04 +02:00
Kim Alvefur
0c99443297 util.argparse: Tests 2021-10-12 14:48:21 +02:00