summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAnthony Zhang <azhang9@gmail.com>2017-02-22 07:23:30 (GMT)
committerINADA Naoki <methane@users.noreply.github.com>2017-02-22 07:23:30 (GMT)
commit03f68b60e17b57f6f13729ff73245dbb37b30a4c (patch)
tree59dc7d31f6b135159861f2e8af6e511a58340b96 /Misc
parent0899b9809547ec2894dcf88cf4bba732c5d47d0d (diff)
downloadcpython-03f68b60e17b57f6f13729ff73245dbb37b30a4c.zip
cpython-03f68b60e17b57f6f13729ff73245dbb37b30a4c.tar.gz
cpython-03f68b60e17b57f6f13729ff73245dbb37b30a4c.tar.bz2
bpo-29110: Fix file object leak in `aifc.open` when given invalid AIFF file. (GH-162)
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 4d1cf29..57e5ab9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -242,6 +242,9 @@ Library
- bpo-29532: Altering a kwarg dictionary passed to functools.partial()
no longer affects a partial object after creation.
+- 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.
+
- bpo-22807: Add uuid.SafeUUID and uuid.UUID.is_safe to relay information from
the platform about whether generated UUIDs are generated with a
multiprocessing safe method.