summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-10-30 13:03:56 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-10-30 13:03:56 (GMT)
commitbfa3470b85960c35b916ddb14189a5867a344103 (patch)
tree0ca751f02e6cffd55e7278c16b9d83d16726c6bb /Misc
parentb046b807fac8c2ad0c52a4d9872f8b9ccfd58c5b (diff)
downloadcpython-bfa3470b85960c35b916ddb14189a5867a344103.zip
cpython-bfa3470b85960c35b916ddb14189a5867a344103.tar.gz
cpython-bfa3470b85960c35b916ddb14189a5867a344103.tar.bz2
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 561dda9..afbf04c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -57,6 +57,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 #10198: fix duplicate header written to wave files when writeframes()
is called without data.