summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorbenfogle <benfogle@gmail.com>2017-11-10 16:03:40 -0500
committerAntoine Pitrou <pitrou@free.fr>2017-11-10 22:03:40 +0100
commit9703f092abc0259926d88c7855afeae4a78afc7d (patch)
treed19e75bea4faacf58155861dd056f544a584f146 /Misc
parent4652bf2acc0d1ddabd224efabbfee0c3125da18b (diff)
downloadcpython-git-9703f092abc0259926d88c7855afeae4a78afc7d.tar.gz
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.rst2
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 0000000000..1dd54e35b3
--- /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.