gh-129158: Fix unwanted trailing whitespace in test_asyncio.test_subprocess (#129181)
https://github.com/python/cpython/commit/2ed5ee9a50454b3fce87b26be5838ca7127... commit: 2ed5ee9a50454b3fce87b26be5838ca7127b2ff9 branch: main author: Ćukasz Langa <lukasz@langa.pl> committer: vstinner <vstinner@python.org> date: 2025-01-22T13:52:45Z summary: gh-129158: Fix unwanted trailing whitespace in test_asyncio.test_subprocess (#129181) files: M Lib/test/test_asyncio/test_subprocess.py diff --git a/Lib/test/test_asyncio/test_subprocess.py b/Lib/test/test_asyncio/test_subprocess.py index a053db8e6d76f2..341e3e979e002b 100644 --- a/Lib/test/test_asyncio/test_subprocess.py +++ b/Lib/test/test_asyncio/test_subprocess.py @@ -905,7 +905,7 @@ def setUp(self): # Force the use of the threaded child watcher unix_events.can_use_pidfd = mock.Mock(return_value=False) super().setUp() - + def tearDown(self): unix_events.can_use_pidfd = self._original_can_use_pidfd return super().tearDown()
participants (1)
-
vstinner