* :mod:`pipes`
* :mod:`sndhdr`
* :mod:`spwd`
+ * :mod:`sunau`
(Contributed by Brett Cannon in :issue:`47061`.)
from collections import namedtuple
import warnings
+warnings._deprecated(__name__, remove=(3, 13))
+
_sunau_params = namedtuple('_sunau_params',
'nchannels sampwidth framerate nframes comptype compname')
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
import io
import struct
import sys
-import sunau
from test.support import warnings_helper
+sunau = warnings_helper.import_deprecated("sunau")
audioop = warnings_helper.import_deprecated("audioop")
--- /dev/null
+Deprecate the sunau module.