summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorINADA Naoki <methane@users.noreply.github.com>2017-02-26 19:35:00 (GMT)
committerGitHub <noreply@github.com>2017-02-26 19:35:00 (GMT)
commitb7fb1e25c89a9eb85b95027f4167bc0977687c43 (patch)
treeee7ef376531c97f9cbd3a634d76ac9a2b9f495ef /Misc
parent21c697fd1073d6ab59e2ba82ea80bc81b9c4125c (diff)
downloadcpython-b7fb1e25c89a9eb85b95027f4167bc0977687c43.zip
cpython-b7fb1e25c89a9eb85b95027f4167bc0977687c43.tar.gz
cpython-b7fb1e25c89a9eb85b95027f4167bc0977687c43.tar.bz2
bpo-29110: Fix file object leak in `aifc.open` (GH-311)
(cherry picked from commit 03f68b6) (GH-162) (cherry picked from commit 5dc33ee) (GH-293)
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 bab13da..8a7e1b5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,9 @@ Extension Modules
Library
-------
+- bpo-29110: Fix file object leak in aifc.open() when file is given as a
+ filesystem path and is not in valid AIFF format. Patch by Anthony Zhang.
+
- Issue #28961: Fix unittest.mock._Call helper: don't ignore the name parameter
anymore. Patch written by Jiajun Huang.