summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-08-29 18:14:40 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-08-29 18:14:40 (GMT)
commitfff896b3090a9257a81f83eb812ea6940d15643d (patch)
tree7b2cc94c90a444ff3056b036e575f406646ad691 /Misc
parent3092ed977fa601c68469a61e7366eaa40c77bb7b (diff)
downloadcpython-fff896b3090a9257a81f83eb812ea6940d15643d.zip
cpython-fff896b3090a9257a81f83eb812ea6940d15643d.tar.gz
cpython-fff896b3090a9257a81f83eb812ea6940d15643d.tar.bz2
#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 e9a929a..3b0bd5c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.7 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 #6704: Improve the col_offset in AST for "for" statements with
a target of tuple unpacking.