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.
subprocess.Popen.__init__
subprocess.run
1 parent bc26f95 commit b298d6dCopy full SHA for b298d6d
Lib/subprocess.py
@@ -551,7 +551,7 @@ def run(*popenargs,
551
kwargs['stdout'] = PIPE
552
kwargs['stderr'] = PIPE
553
554
- with Popen(*popenargs, **kwargs) as process:
+ with Popen(popenargs, **kwargs) as process:
555
try:
556
stdout, stderr = process.communicate(input, timeout=timeout)
557
except TimeoutExpired as exc:
0 commit comments