diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2015-04-13 17:48:19 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2015-04-13 17:48:19 (GMT) |
commit | cb46f0ecb05ef3ccd3f53ced7f60748c0b3c710a (patch) | |
tree | bd7bf53350b0acbd12721bcfba898d6f6072fc1c /Misc | |
parent | 9c680b07285867844927871ddcbf60c93e786e1f (diff) | |
parent | 25f85d4bd58d86d3e6ce99cb9f270e96bf5ba08f (diff) | |
download | cpython-cb46f0ecb05ef3ccd3f53ced7f60748c0b3c710a.zip cpython-cb46f0ecb05ef3ccd3f53ced7f60748c0b3c710a.tar.gz cpython-cb46f0ecb05ef3ccd3f53ced7f60748c0b3c710a.tar.bz2 |
Issue #23309: Avoid a deadlock at shutdown if a daemon thread is aborted
while it is holding a lock to a buffered I/O object, and the main thread
tries to use the same I/O object (typically stdout or stderr). A fatal
error is emitted instead.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -10,6 +10,11 @@ Release date: XXX Core and Builtins ----------------- +- Issue #23309: Avoid a deadlock at shutdown if a daemon thread is aborted + while it is holding a lock to a buffered I/O object, and the main thread + tries to use the same I/O object (typically stdout or stderr). A fatal + error is emitted instead. + - Issue #22977: Fixed formatting Windows error messages on Wine. Patch by Martin Panter. |