diff options
| author | Antoine Pitrou <antoine@python.org> | 2023-11-04 13:59:24 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-04 13:59:24 (GMT) |
| commit | 0e9c364f4ac18a2237bdbac702b96bcf8ef9cb09 (patch) | |
| tree | 8febb8282c2c1ebd73a18205ec5b9229a99ac4fe /Lib/test/audit-tests.py | |
| parent | a28a3967ab9a189122f895d51d2551f7b3a273b0 (diff) | |
| download | cpython-0e9c364f4ac18a2237bdbac702b96bcf8ef9cb09.zip cpython-0e9c364f4ac18a2237bdbac702b96bcf8ef9cb09.tar.gz cpython-0e9c364f4ac18a2237bdbac702b96bcf8ef9cb09.tar.bz2 | |
GH-110829: Ensure Thread.join() joins the OS thread (#110848)
Joining a thread now ensures the underlying OS thread has exited. This is required for safer fork() in multi-threaded processes.
---------
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Diffstat (limited to 'Lib/test/audit-tests.py')
| -rw-r--r-- | Lib/test/audit-tests.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/audit-tests.py b/Lib/test/audit-tests.py index 89f407d..ce4a11b 100644 --- a/Lib/test/audit-tests.py +++ b/Lib/test/audit-tests.py @@ -455,6 +455,9 @@ def test_threading(): i = _thread.start_new_thread(test_func(), ()) lock.acquire() + handle = _thread.start_joinable_thread(test_func()) + handle.join() + def test_threading_abort(): # Ensures that aborting PyThreadState_New raises the correct exception |
