We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mprof run
Consider a program called test.py that may have an option -number -1. Command
test.py
-number -1
mprof run python test.py -number -1
will pass -number -- -1 to test.py, i.e. test.py is started by
-number -- -1
python test.py -number -- -1
It seems that the run action doesn't need -- to distinguish the parameters.
run
--
The text was updated successfully, but these errors were encountered:
I have the same issue.
Sorry, something went wrong.
@StephQAZ To address this issue, you might want to consider using pull request #390.
Successfully merging a pull request may close this issue.
Consider a program called
test.py
that may have an option-number -1
. Commandwill pass
-number -- -1
totest.py
, i.e.test.py
is started byIt seems that the
run
action doesn't need--
to distinguish the parameters.The text was updated successfully, but these errors were encountered: