Deprecate the audiodev module for 3.0.

This commit is contained in:
Brett Cannon 2008-05-06 23:23:34 +00:00
parent 79618239d1
commit e5d2cbaeaf
3 changed files with 40 additions and 1 deletions

View file

@ -1,4 +1,7 @@
"""Classes for manipulating audio devices (currently only for Sun and SGI)"""
from warnings import warnpy3k
warnpy3k("the audiodev module has been removed in Python 3.0", stacklevel=2)
del warnpy3k
__all__ = ["error","AudioDev"]