This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author remi.lapeyre
Recipients christian.heimes, remi.lapeyre
Date 2020-05-04.10:14:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1588587283.05.0.163057060757.issue40497@roundup.psfhosted.org>
In-reply-to
Content
> check_output() should not accept check=False.

I thought about raising ValueError instead but `subprocess.check_output([...], check=False)` is actually a convenient shortcut over `subprocess.run([...], stdout=subprocess.PIPE).stdout` and I can't think of much drawbacks if someone explicitly ask for the check to be disabled. Is there any way we could have that?
History
Date User Action Args
2020-05-04 10:14:43remi.lapeyresetrecipients: + remi.lapeyre, christian.heimes
2020-05-04 10:14:43remi.lapeyresetmessageid: <1588587283.05.0.163057060757.issue40497@roundup.psfhosted.org>
2020-05-04 10:14:43remi.lapeyrelinkissue40497 messages
2020-05-04 10:14:42remi.lapeyrecreate