summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2010-05-05 22:27:31 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2010-05-05 22:27:31 (GMT)
commitae4d5c6b643c3efeb5f7b43ca9108978b388ab34 (patch)
tree3c90532bd61cd839e57c9577aae0bfa63977d8ca /Misc
parent55f8ae28a1c3364a8f637b9f1301697cb6926253 (diff)
downloadcpython-ae4d5c6b643c3efeb5f7b43ca9108978b388ab34.zip
cpython-ae4d5c6b643c3efeb5f7b43ca9108978b388ab34.tar.gz
cpython-ae4d5c6b643c3efeb5f7b43ca9108978b388ab34.tar.bz2
Merged revisions 80830 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r80830 | tarek.ziade | 2010-05-06 00:15:31 +0200 (Thu, 06 May 2010) | 1 line Fixed #4265: shutil.copyfile() was leaking file descriptors when disk fills ........
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 2b76def..050a8f5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -348,6 +348,9 @@ C-API
Library
-------
+- Issue #4265: shutil.copyfile() was leaking file descriptors when disk fills.
+ Patch by Tres Seaver.
+
- Issue #8390: tarfile uses surrogateespace as the default error handler
(instead of replace in read mode or strict in write mode)