summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-10-31 16:04:14 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-10-31 16:04:14 (GMT)
commitf569826f06a035b749164f9530efc25fec10691d (patch)
tree35e32ceb500515c64c7c3181e65e7001bbe01c52 /Misc/NEWS
parente974571d36009e327a97bb83389cf05c2b858288 (diff)
downloadcpython-f569826f06a035b749164f9530efc25fec10691d.zip
cpython-f569826f06a035b749164f9530efc25fec10691d.tar.gz
cpython-f569826f06a035b749164f9530efc25fec10691d.tar.bz2
Issue #10266: uu.decode didn't close in_file explicitly when it was given
as a filename. Patch by Brian Brazil.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ca66be0..08da2e6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -59,6 +59,9 @@ Core and Builtins
Library
-------
+- Issue #10266: uu.decode didn't close in_file explicitly when it was given
+ as a filename. Patch by Brian Brazil.
+
- Issue #10160: Speed up operator.attrgetter. Patch by Christos Georgiou.
- logging: Added style option to basicConfig() to allow %, {} or $-formatting.