DragonEggBedrockBreaking added the comment:
Ok, thanks, I understand now.
--
resolution: -> not a bug
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
DragonEggBedrockBreaking added the comment:
I read the documentation, and I saw in the example that when capture_output was
true, command output was printed, otherwise it isn't printed. my observations
directly contradict the examples given in the docs, as stated in my original
New submission from DragonEggBedrockBreaking :
If you run subprocess.run(capture_output=True), it doesn't show output, but if
you run subprocess.run(capture_output=False) (or if you just run
subprocess.run() since False is default), it does show output. In the example
in the docs, it