Deprecate the audiodev module for 3.0.
diff --git a/Lib/audiodev.py b/Lib/audiodev.py
index 8945c98..b6831a6 100644
--- a/Lib/audiodev.py
+++ b/Lib/audiodev.py
@@ -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"]