summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-10-31 13:12:48 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-10-31 13:12:48 (GMT)
commit3917c092b954a967fac7324628b213afbbb32a8c (patch)
tree2a65b53c697f2a5cf135f00e70c512b9dd8b58e2 /Misc
parent594a046b88abf26c2c2a314ca5b54e4c808ba801 (diff)
downloadcpython-3917c092b954a967fac7324628b213afbbb32a8c.zip
cpython-3917c092b954a967fac7324628b213afbbb32a8c.tar.gz
cpython-3917c092b954a967fac7324628b213afbbb32a8c.tar.bz2
Merged revisions 85975 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85975 | antoine.pitrou | 2010-10-30 15:03:56 +0200 (sam., 30 oct. 2010) | 4 lines Issue #10246: uu.encode didn't close file objects explicitly when filenames were given to it. Patch by Brian Brazil. ........
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 82c0f51..4f71701 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,9 @@ Core and Builtins
Library
-------
+- Issue #10246: uu.encode didn't close file objects explicitly when filenames
+ were given to it. Patch by Brian Brazil.
+
- Issue #10253: FileIO leaks a file descriptor when trying to open a file
for append that isn't seekable. Patch by Brian Brazil.