diff options
author | Anthony Zhang <azhang9@gmail.com> | 2017-02-22 07:23:30 (GMT) |
---|---|---|
committer | INADA Naoki <methane@users.noreply.github.com> | 2017-02-22 07:23:30 (GMT) |
commit | 03f68b60e17b57f6f13729ff73245dbb37b30a4c (patch) | |
tree | 59dc7d31f6b135159861f2e8af6e511a58340b96 /Misc | |
parent | 0899b9809547ec2894dcf88cf4bba732c5d47d0d (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |