summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2008-08-14 22:44:29 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2008-08-14 22:44:29 (GMT)
commit8769576477b88b05e6c857e6a63bed506eae014e (patch)
tree598f15f2d89e3fd8cab2d30052bd8be59b4be30c /Misc
parent74bbea7ed7a75a180d02846e93b53e24ef6ca651 (diff)
downloadcpython-8769576477b88b05e6c857e6a63bed506eae014e.zip
cpython-8769576477b88b05e6c857e6a63bed506eae014e.tar.gz
cpython-8769576477b88b05e6c857e6a63bed506eae014e.tar.bz2
Merged revisions 65686 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r65686 | antoine.pitrou | 2008-08-14 23:04:30 +0200 (jeu., 14 août 2008) | 3 lines Issue #3476: make BufferedReader and BufferedWriter thread-safe ........
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 dfa1a2f..afe6211 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -30,6 +30,9 @@ Core and Builtins
Library
-------
+- Issue #3476: binary buffered reading through the new "io" library is now
+ thread-safe.
+
- Issue #1342811: Fix leak in Tkinter.Menu.delete. Commands associated to
menu entries were not deleted.