Consider a program called `test.py` that may have an option `-number -1`. Command ```bash mprof run python test.py -number -1 ``` will pass `-number -- -1` to `test.py`, i.e. `test.py` is started by ```bash python test.py -number -- -1 ``` It seems that the `run` action doesn't need `--` to distinguish the parameters.
Consider a program called
test.pythat may have an option-number -1. Commandwill pass
-number -- -1totest.py, i.e.test.pyis started byIt seems that the
runaction doesn't need--to distinguish the parameters.