summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-10-12 18:35:33 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-10-12 18:35:33 (GMT)
commit499d82136dbe48680b9a90e7e5f4ed48eea7866a (patch)
treea2f04a321ecd80bcb4dcec709ee28b40a121e4a7 /Misc
parent5b68d649920dd84515950a5a02ffdac4ec15c4a8 (diff)
downloadcpython-499d82136dbe48680b9a90e7e5f4ed48eea7866a.zip
cpython-499d82136dbe48680b9a90e7e5f4ed48eea7866a.tar.gz
cpython-499d82136dbe48680b9a90e7e5f4ed48eea7866a.tar.bz2
Issue #18919: If the close() method of a writer in the sunau or wave module
failed, second invocation of close() and destructor no more raise an exception. Second invocation of close() on sunau writer now has no effects. The aifc module now accepts lower case of names of the 'ulaw' and 'alaw' codecs.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d23f7cc..ee4f001 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,12 @@ Core and Builtins
Library
-------
+- Issue #18919: If the close() method of a writer in the sunau or wave module
+ failed, second invocation of close() and destructor no more raise an
+ exception. Second invocation of close() on sunau writer now has no effects.
+ The aifc module now accepts lower case of names of the 'ulaw' and 'alaw'
+ codecs.
+
- Issue #19131: The aifc module now correctly reads and writes sampwidth of
compressed streams.