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
It uses shell by default:
from subprocess import run from subprocee_tee import run as tee tee("echo 1") # 1 run("echo 1") # FileNotFoundError: [Errno 2] No such file or directory: 'echo 1'
Either changes should be made to be consistent with subprocess, or the branding should be changed.
subprocess
The text was updated successfully, but these errors were encountered:
Don't use shell by default. Fixes pycontribs#100, pycontribs#103
10d5df6
Successfully merging a pull request may close this issue.
It uses shell by default:
Either changes should be made to be consistent with
subprocess
, or the branding should be changed.The text was updated successfully, but these errors were encountered: