summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-08-29 23:00:38 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-08-29 23:00:38 (GMT)
commitccd686a47336bfbd70614824465f5793fd69a685 (patch)
treeefd8f8fca388d16df20743952792abb384339e32 /Misc
parent8d9a6eb5310f486a594704db370ab53088fa4520 (diff)
downloadcpython-ccd686a47336bfbd70614824465f5793fd69a685.zip
cpython-ccd686a47336bfbd70614824465f5793fd69a685.tar.gz
cpython-ccd686a47336bfbd70614824465f5793fd69a685.tar.bz2
Merged revisions 74581 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r74581 | amaury.forgeotdarc | 2009-08-29 20:14:40 +0200 (sam., 29 août 2009) | 3 lines #6750: TextIOWrapped could duplicate output when several threads write to it. this affect text files opened with io.open(), and the print() function of py3k ........
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 d187299..e35f5ee 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.2 Alpha 1?
Core and Builtins
-----------------
+- Issue #6750: A text file opened with io.open() could duplicate its output
+ when writing from multiple threads at the same time.
+
- Issue #6707: dir() on an uninitialized module caused a crash.
- Issue #6540: Fixed crash for bytearray.translate() with invalid parameters.