Skip to content

Commit 9b18a0d

Browse files
author
brett.cannon
committed
Deprecate sunaudiodev/SUNAUDIODEV for removal in 3.0.
git-svn-id: http://svn.python.org/projects/python/trunk@63336 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent c94394a commit 9b18a0d

File tree

5 files changed

+15
-3
lines changed

5 files changed

+15
-3
lines changed

Lib/plat-sunos5/SUNAUDIODEV.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Symbolic constants for use with sunaudiodev module
22
# The names are the same as in audioio.h with the leading AUDIO_
33
# removed.
4+
from warnings import warnpy3k
5+
warnpy3k("the SUNAUDIODEV module has been removed in Python 3.0", stacklevel=2)
6+
del warnpy3k
47

58
# Not all values are supported on all releases of SunOS.
69

Lib/test/test_py3kwarn.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,9 @@ class TestStdlibRemovals(unittest.TestCase):
151151
'Explorer', 'Finder', 'Netscape',
152152
'StdSuites', 'SystemEvents', 'Terminal',
153153
'cfmfile', 'bundlebuilder', 'buildtools',
154-
'ColorPicker')}
154+
'ColorPicker'),
155+
'sunos5' : ('sunaudiodev', 'SUNAUDIODEV'),
156+
}
155157
optional_modules = ('bsddb185', 'Canvas', 'dl', 'linuxaudiodev', 'imageop',
156158
'sv')
157159

Lib/test/test_sunaudiodev.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from test.test_support import findfile, TestFailed, TestSkipped
2-
import sunaudiodev
1+
from test.test_support import findfile, TestFailed, TestSkipped, import_module
2+
sunaudiodev = import_module('sunaudiodev', deprecated=True)
33
import os
44

55
try:

Misc/NEWS

+3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ Extension Modules
3737
Library
3838
-------
3939

40+
- The sunaudiodev and SUNAUDIODEV modules have been deprecated for removal in
41+
Python 3.0.
42+
4043
- The WAIT module from IRIX has been deprecated for removal in Python 3.0.
4144

4245
- The torgb module from IRIX has been deprecated for removal in Python 3.0.

Modules/sunaudiodev.c

+4
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,10 @@ void
452452
initsunaudiodev(void)
453453
{
454454
PyObject *m, *d;
455+
456+
if (PyErr_WarnPy3k("the sunaudiodev module has been removed in "
457+
"Python 3.0", 2) < 0)
458+
return;
455459

456460
m = Py_InitModule("sunaudiodev", sunaudiodev_methods);
457461
if (m == NULL)

0 commit comments

Comments
 (0)