summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sunau.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-37320: Remove openfp() of aifc, sunau and wave (GH-14169)Victor Stinner2019-06-171-4/+0
| | | | | aifc.openfp() alias to aifc.open(), sunau.openfp() alias to sunau.open(), and wave.openfp() alias to wave.open() have been removed. They were deprecated since Python 3.7.
* bpo-32056: Improve exceptions in aifc, wave and sunau. (GH-5951)Serhiy Storchaka2018-03-181-0/+37
|
* bpo-31985: Deprecate openfp in aifc, sunau, and wave (#4344)Brian Curtin2017-11-101-0/+4
| | | | | | | | | | The openfp functions of aifp, sunau, and wave had pointed to the open function of each module since 1993 as a matter of backwards compatibility. In the case of aifc.openfp, it was both undocumented and untested. This change begins the formal deprecation of those openfp functions, with their removal coming in 3.9. This additionally adds a TODO in test_pyclbr around using aifc.openfp, though it shouldn't be changed until removal in 3.9.
* Issue #23277: Remove unused imports in tests.Serhiy Storchaka2016-04-241-1/+0
|
* Issue #19623: Fixed writing to unseekable files in the aifc module.Serhiy Storchaka2013-12-141-19/+9
|\
| * Issue #19623: Fixed writing to unseekable files in the aifc module.Serhiy Storchaka2013-12-141-15/+8
| |
* | Issue #19641: Added the audioop.byteswap() function to convert big-endianSerhiy Storchaka2013-11-231-1/+2
| | | | | | | | samples to little-endian and vice versa.
* | Issue #19261: Added support for writing 24-bit samples in the sunau module.Serhiy Storchaka2013-11-101-0/+28
|/
* Issue #18919: Unified and extended tests for audio modules: aifc, sunau andSerhiy Storchaka2013-10-131-56/+89
| | | | wave.
* Issue #8897: Fix sunau module, use bytes to write the header. Patch written byVictor Stinner2010-06-071-0/+70
Thomas Jollans.