summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2023-10-27 22:44:12 (GMT)
committerGitHub <noreply@github.com>2023-10-27 22:44:12 (GMT)
commitc3bb10c9303503e7b55a7bdf9acfa6b3bcb699c6 (patch)
treea397c4aa0cf90638f08cc987f8e5a5f3aa1f39d3 /Lib
parent1c9a0c40794f0cb3234533d5e83234e7dce4ccd4 (diff)
downloadcpython-c3bb10c9303503e7b55a7bdf9acfa6b3bcb699c6.zip
cpython-c3bb10c9303503e7b55a7bdf9acfa6b3bcb699c6.tar.gz
cpython-c3bb10c9303503e7b55a7bdf9acfa6b3bcb699c6.tar.bz2
gh-110205: Fix asyncio ThreadedChildWatcher._join_threads() (#110884)
- `ThreadedChildWatcher.close()` is now *officially* a no-op; `_join_threads()` never did anything. - Threads created by that class are now named `asyncio-waitpid-NNN`. - `test.test_asyncio.utils.TestCase.close_loop()` now waits for the child watcher's threads, but not forever; if a thread hangs, it raises `RuntimeError`.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/asyncio/unix_events.py11
-rw-r--r--Lib/test/test_asyncio/utils.py11
2 files changed, 10 insertions, 12 deletions
diff --git a/Lib/asyncio/unix_events.py b/Lib/asyncio/unix_events.py
index 809f29e..c944191 100644
--- a/Lib/asyncio/unix_events.py
+++ b/Lib/asyncio/unix_events.py
@@ -1371,14 +1371,7 @@ class ThreadedChildWatcher(AbstractChildWatcher):
return True
def close(self):
- self._join_threads()
-
- def _join_threads(self):
- """Internal: Join all non-daemon threads"""
- threads = [thread for thread in list(self._threads.values())
- if thread.is_alive() and not thread.daemon]
- for thread in threads:
- thread.join()
+ pass
def __enter__(self):
return self
@@ -1397,7 +1390,7 @@ class ThreadedChildWatcher(AbstractChildWatcher):
def add_child_handler(self, pid, callback, *args):
loop = events.get_running_loop()
thread = threading.Thread(target=self._do_waitpid,
- name=f"waitpid-{next(self._pid_counter)}",
+ name=f"asyncio-waitpid-{next(self._pid_counter)}",
args=(loop, pid, callback, args),
daemon=True)
self._threads[pid] = thread
diff --git a/Lib/test/test_asyncio/utils.py b/Lib/test/test_asyncio/utils.py
index 18869b3..44943e1 100644
--- a/Lib/test/test_asyncio/utils.py
+++ b/Lib/test/test_asyncio/utils.py
@@ -546,6 +546,7 @@ class TestCase(unittest.TestCase):
else:
loop._default_executor.shutdown(wait=True)
loop.close()
+
policy = support.maybe_get_event_loop_policy()
if policy is not None:
try:
@@ -557,9 +558,13 @@ class TestCase(unittest.TestCase):
pass
else:
if isinstance(watcher, asyncio.ThreadedChildWatcher):
- threads = list(watcher._threads.values())
- for thread in threads:
- thread.join()
+ # Wait for subprocess to finish, but not forever
+ for thread in list(watcher._threads.values()):
+ thread.join(timeout=support.SHORT_TIMEOUT)
+ if thread.is_alive():
+ raise RuntimeError(f"thread {thread} still alive: "
+ "subprocess still running")
+
def set_event_loop(self, loop, *, cleanup=True):
if loop is None: