diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-12 18:35:33 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-12 18:35:33 (GMT) |
commit | 499d82136dbe48680b9a90e7e5f4ed48eea7866a (patch) | |
tree | a2f04a321ecd80bcb4dcec709ee28b40a121e4a7 /Misc | |
parent | 5b68d649920dd84515950a5a02ffdac4ec15c4a8 (diff) | |
download | cpython-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/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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. |