From ac7b1a3f32cc81520e8962352294006d65744028 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 18 Jun 2019 00:00:24 +0200 Subject: bpo-37320: Remove openfp() of aifc, sunau and wave (GH-14169) 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. --- Lib/test/audiotests.py | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'Lib/test/audiotests.py') diff --git a/Lib/test/audiotests.py b/Lib/test/audiotests.py index 0dad017229..d3e8e9ee44 100644 --- a/Lib/test/audiotests.py +++ b/Lib/test/audiotests.py @@ -1,7 +1,6 @@ from test.support import findfile, TESTFN, unlink import array import io -from unittest import mock import pickle @@ -50,17 +49,6 @@ class AudioTests: self.assertEqual(pickle.loads(dump), params) -class AudioMiscTests(AudioTests): - - def test_openfp_deprecated(self): - arg = "arg" - mode = "mode" - with mock.patch(f"{self.module.__name__}.open") as mock_open, \ - self.assertWarns(DeprecationWarning): - self.module.openfp(arg, mode=mode) - mock_open.assert_called_with(arg, mode=mode) - - class AudioWriteTests(AudioTests): def create_file(self, testfile): -- cgit v1.2.1