# Symbolic constants for use with sunaudiodev module
# The names are the same as in audioio.h with the leading AUDIO_
# removed.
+from warnings import warnpy3k
+warnpy3k("the SUNAUDIODEV module has been removed in Python 3.0", stacklevel=2)
+del warnpy3k
# Not all values are supported on all releases of SunOS.
'Explorer', 'Finder', 'Netscape',
'StdSuites', 'SystemEvents', 'Terminal',
'cfmfile', 'bundlebuilder', 'buildtools',
- 'ColorPicker')}
+ 'ColorPicker'),
+ 'sunos5' : ('sunaudiodev', 'SUNAUDIODEV'),
+ }
optional_modules = ('bsddb185', 'Canvas', 'dl', 'linuxaudiodev', 'imageop',
'sv')
-from test.test_support import findfile, TestFailed, TestSkipped
-import sunaudiodev
+from test.test_support import findfile, TestFailed, TestSkipped, import_module
+sunaudiodev = import_module('sunaudiodev', deprecated=True)
import os
try:
Library
-------
+- The sunaudiodev and SUNAUDIODEV modules have been deprecated for removal in
+ Python 3.0.
+
- The WAIT module from IRIX has been deprecated for removal in Python 3.0.
- The torgb module from IRIX has been deprecated for removal in Python 3.0.
initsunaudiodev(void)
{
PyObject *m, *d;
+
+ if (PyErr_WarnPy3k("the sunaudiodev module has been removed in "
+ "Python 3.0", 2) < 0)
+ return;
m = Py_InitModule("sunaudiodev", sunaudiodev_methods);
if (m == NULL)