summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-10-27 17:41:58 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-10-27 17:41:58 (GMT)
commitdd62966a5fbc502a0e8d91ca3a7de843f1800d99 (patch)
treee68ae98c2e5c19cbbe5cf0925c6fd841e2a58c4f /Misc
parent5098bc944849a7e9a355ae9647d740935893fad1 (diff)
downloadcpython-dd62966a5fbc502a0e8d91ca3a7de843f1800d99.zip
cpython-dd62966a5fbc502a0e8d91ca3a7de843f1800d99.tar.gz
cpython-dd62966a5fbc502a0e8d91ca3a7de843f1800d99.tar.bz2
Issue #7205: Fix a possible deadlock when using a BZ2File object from several threads at once.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6d48714..1ee7557 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -427,6 +427,9 @@ Core and Builtins
Library
-------
+- Issue #7205: Fix a possible deadlock when using a BZ2File object from
+ several threads at once.
+
- Issue #7071: byte-compilation in Distutils is now done with respect to
sys.dont_write_bytecode.