From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 10 Sep 2019 14:51:29 +0000 (-0700) Subject: Fix subprocess docstring typo (GH-15812) X-Git-Tag: v3.8.0rc1~221 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=41c965f93007b53710b9f63918f6710dde321226;p=python Fix subprocess docstring typo (GH-15812) (cherry picked from commit 182e1d1f849757439f2031504f142fa4e1251611) Co-authored-by: Matthias --- diff --git a/Lib/subprocess.py b/Lib/subprocess.py index 5bbeba47a3..aed7292541 100644 --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -395,7 +395,7 @@ def check_output(*popenargs, timeout=None, **kwargs): b'when in the course of barman events\n' By default, all communication is in bytes, and therefore any "input" - should be bytes, and the return value wil be bytes. If in text mode, + should be bytes, and the return value will be bytes. If in text mode, any "input" should be a string, and the return value will be a string decoded according to locale encoding, or by "encoding" if set. Text mode is triggered by setting any of text, encoding, errors or universal_newlines.