[issue45048] subprocess.run(capture_output=Bool) does the opposite of expected

2021-08-30 Thread DragonEggBedrockBreaking
DragonEggBedrockBreaking added the comment: Ok, thanks, I understand now. -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue45048] subprocess.run(capture_output=Bool) does the opposite of expected

2021-08-29 Thread DragonEggBedrockBreaking
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

[issue45048] subprocess.run(capture_output=Bool) does the opposite of expected

2021-08-29 Thread DragonEggBedrockBreaking
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