summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-10-27 17:49:21 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-10-27 17:49:21 (GMT)
commita3af0eb7a62932babfae681d6c1aca30269f5fb1 (patch)
treec769982bbcb632e293412a8de08399987dc9f49e /Misc
parente02d1a0fd477e9f4009c693eaccf1f12c11f83fd (diff)
downloadcpython-a3af0eb7a62932babfae681d6c1aca30269f5fb1.zip
cpython-a3af0eb7a62932babfae681d6c1aca30269f5fb1.tar.gz
cpython-a3af0eb7a62932babfae681d6c1aca30269f5fb1.tar.bz2
Merged revisions 75820 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r75820 | antoine.pitrou | 2009-10-27 18:47:14 +0100 (mar., 27 oct. 2009) | 9 lines Merged revisions 75818 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r75818 | antoine.pitrou | 2009-10-27 18:41:58 +0100 (mar., 27 oct. 2009) | 3 lines 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 f075eb4..895ef49 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -34,6 +34,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.