diff options
author | benfogle <benfogle@gmail.com> | 2017-11-10 21:03:40 (GMT) |
---|---|---|
committer | Antoine Pitrou <pitrou@free.fr> | 2017-11-10 21:03:40 (GMT) |
commit | 9703f092abc0259926d88c7855afeae4a78afc7d (patch) | |
tree | d19e75bea4faacf58155861dd056f544a584f146 /Misc | |
parent | 4652bf2acc0d1ddabd224efabbfee0c3125da18b (diff) | |
download | cpython-9703f092abc0259926d88c7855afeae4a78afc7d.zip cpython-9703f092abc0259926d88c7855afeae4a78afc7d.tar.gz cpython-9703f092abc0259926d88c7855afeae4a78afc7d.tar.bz2 |
bpo-31976: Fix race condition when flushing a file is slow. (#4331)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-11-09-21-36-32.bpo-31976.EOA7qY.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-11-09-21-36-32.bpo-31976.EOA7qY.rst b/Misc/NEWS.d/next/Library/2017-11-09-21-36-32.bpo-31976.EOA7qY.rst new file mode 100644 index 0000000..1dd54e3 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-11-09-21-36-32.bpo-31976.EOA7qY.rst @@ -0,0 +1,2 @@ +Fix race condition when flushing a file is slow, which can cause a +segfault if closing the file from another thread. |