summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2008-07-07 04:31:58 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2008-07-07 04:31:58 (GMT)
commit3b1e6b2f833d1e030b2ff853e1a942dc0de968f5 (patch)
tree431edbd1f84590c5101f36385778f9ffa6c26eb7 /Misc
parent0f7cddc308b297e6a1c2dd61503acea38401656f (diff)
downloadcpython-3b1e6b2f833d1e030b2ff853e1a942dc0de968f5.zip
cpython-3b1e6b2f833d1e030b2ff853e1a942dc0de968f5.tar.gz
cpython-3b1e6b2f833d1e030b2ff853e1a942dc0de968f5.tar.bz2
- Issue #3309: Fix bz2.BZFile itererator to release its internal lock
properly when raising an exception due to the bz2file being closed. Prevents a deadlock.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2dfa33a..c544739 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -68,6 +68,10 @@ Library
- Issue #2113: Fix error in subprocess.Popen if the select system call is
interrupted by a signal.
+- Issue #3309: Fix bz2.BZFile itererator to release its internal lock
+ properly when raising an exception due to the bz2file being closed.
+ Prevents a deadlock.
+
Build
-----