From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 18 May 2023 00:09:12 +0000 (-0700) Subject: [3.11] gh-104340: Suppress warning about unawaited exception for closed pipe stdin... X-Git-Tag: v3.11.4~63 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a8fc8b7e81e1e830771758a00312b7cea2803085;p=thirdparty%2FPython%2Fcpython.git [3.11] gh-104340: Suppress warning about unawaited exception for closed pipe stdin (GH-104586) (#104594) (cherry picked from commit 7fc8e2d4627cdba5cb0075c9052ed6f4b6ecd36d) Co-authored-by: Guido van Rossum --- diff --git a/Lib/asyncio/subprocess.py b/Lib/asyncio/subprocess.py index cd10231f710f..c380bbb0ee93 100644 --- a/Lib/asyncio/subprocess.py +++ b/Lib/asyncio/subprocess.py @@ -81,6 +81,9 @@ class SubprocessStreamProtocol(streams.FlowControlMixin, self._stdin_closed.set_result(None) else: self._stdin_closed.set_exception(exc) + # Since calling `wait_closed()` is not mandatory, + # we shouldn't log the traceback if this is not awaited. + self._stdin_closed._log_traceback = False return if fd == 1: reader = self.stdout diff --git a/Misc/NEWS.d/next/Library/2023-05-17-20-03-01.gh-issue-104340.kp_XmX.rst b/Misc/NEWS.d/next/Library/2023-05-17-20-03-01.gh-issue-104340.kp_XmX.rst new file mode 100644 index 000000000000..5b03622df6a2 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-05-17-20-03-01.gh-issue-104340.kp_XmX.rst @@ -0,0 +1 @@ +When an ``asyncio`` pipe protocol loses its connection due to an error, and the caller doesn't await ``wait_closed()`` on the corresponding ``StreamWriter``, don't log a warning about an exception that was never retrieved. After all, according to the ``StreamWriter.close()`` docs, the ``wait_closed()`` call is optional ("not mandatory").