We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46b93aa commit d7c9a79Copy full SHA for d7c9a79
1 file changed
plan.md
@@ -43,6 +43,9 @@ whether or not it matches a known argument. (This is a widely used convention. S
43
```bash
44
./command.py input.txt --flag # flag = True
45
./command.py input.txt -- --flag # args = ("--flag",)
46
+
47
+./command.py input.txt arg1 --unknown option # args = ( "arg1" ); kwargs = { "unknown" : "option" }
48
+./command.py input.txt -- arg1 --unknown option # args = ( "arg1", "--unknown", "option" )
49
```
50
51
This feature will not disrupt explicitly declared flags/options.
0 commit comments