diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-08-29 18:14:40 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-08-29 18:14:40 (GMT) |
commit | fff896b3090a9257a81f83eb812ea6940d15643d (patch) | |
tree | 7b2cc94c90a444ff3056b036e575f406646ad691 /Misc | |
parent | 3092ed977fa601c68469a61e7366eaa40c77bb7b (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |