summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_ossaudiodev.py
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2022-04-25 23:26:43 (GMT)
committerGitHub <noreply@github.com>2022-04-25 23:26:43 (GMT)
commitd174ebe91ebc9f7388a22cc81cdc5f7be8bb8c9b (patch)
tree9d980ed8ab186c2bb4b0c4e16465c995e901857e /Lib/test/test_ossaudiodev.py
parentcd5726fe674eaff442510eeb6c75628858be9e9f (diff)
downloadcpython-d174ebe91ebc9f7388a22cc81cdc5f7be8bb8c9b.zip
cpython-d174ebe91ebc9f7388a22cc81cdc5f7be8bb8c9b.tar.gz
cpython-d174ebe91ebc9f7388a22cc81cdc5f7be8bb8c9b.tar.bz2
gh-91217: deprecate sunau (GH-91866)
Diffstat (limited to 'Lib/test/test_ossaudiodev.py')
-rw-r--r--Lib/test/test_ossaudiodev.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_ossaudiodev.py b/Lib/test/test_ossaudiodev.py
index 3275333..2cc641a 100644
--- a/Lib/test/test_ossaudiodev.py
+++ b/Lib/test/test_ossaudiodev.py
@@ -9,10 +9,10 @@ with warnings.catch_warnings():
warnings.simplefilter("ignore", DeprecationWarning)
ossaudiodev = import_helper.import_module('ossaudiodev')
audioop = warnings_helper.import_deprecated('audioop')
+sunau = warnings_helper.import_deprecated('sunau')
import errno
import sys
-import sunau
import time
import unittest