summaryrefslogtreecommitdiffstats
path: root/Lib/test/audiotests.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-40275: Use new test.support helper submodules in tests (GH-21219)Hai Shi2020-06-301-1/+2
|
* bpo-37320: Remove openfp() of aifc, sunau and wave (GH-14169)Victor Stinner2019-06-171-12/+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-31985: Deprecate openfp in aifc, sunau, and wave (#4344)Brian Curtin2017-11-101-0/+12
| | | | | | | | | | 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 #23277: Remove unused sys and os importsBerker Peksag2016-04-241-1/+1
| | | | Patch by Jon Dufresne.
* Issue #22777: Test pickling with all protocols.Serhiy Storchaka2014-12-151-2/+3
|
* Issue #19641: Added the audioop.byteswap() function to convert big-endianSerhiy Storchaka2013-11-231-18/+0
| | | | samples to little-endian and vice versa.
* Issue #19633: Fixed writing not compressed 16- and 32-bit wave files onSerhiy Storchaka2013-11-211-2/+4
|\ | | | | | | | | | | | | big-endian platforms. Temporary forbidden test_unseekable_incompleted_write fornot compressed 16- and 32-bit wave file on big-endian platforms.
| * Issue #19633: Fixed writing not compressed 16- and 32-bit wave files onSerhiy Storchaka2013-11-211-2/+4
| | | | | | | | | | | | | | big-endian platforms. Temporary forbidden test_unseekable_incompleted_write fornot compressed 16- and 32-bit wave file on big-endian platforms.
* | Issue #16685: Added support for writing any bytes-like objects in the aifc,Serhiy Storchaka2013-11-161-0/+24
| | | | | | | | sunau, and wave modules.
* | Issue #5202: Added support for unseekable files in the wave module.Serhiy Storchaka2013-11-161-0/+60
| |
* | Issue #18919: Fixed resource leaks in audio tests.Serhiy Storchaka2013-10-141-12/+12
|\ \ | |/
| * Issue #18919: Fixed resource leaks in audio tests.Serhiy Storchaka2013-10-141-12/+12
| |
* | Issue #18919: Unified and extended tests for audio modules: aifc, sunau andSerhiy Storchaka2013-10-131-8/+55
|/ | | | wave.
* Issue #18919: Unified and extended tests for audio modules: aifc, sunau andSerhiy Storchaka2013-10-131-0/+214
wave.