diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-05-14 01:08:21 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-05-14 01:08:21 (GMT) |
commit | 34721d56833932ccaaff6c6b0ff1bb9ffe8d20b4 (patch) | |
tree | 0aa85c5c429c88a01a73d5d57d343806eb10c1a1 /Lib/plat-irix5 | |
parent | c72df3305f03859d23e006f892db90a78e02f5e0 (diff) | |
download | cpython-34721d56833932ccaaff6c6b0ff1bb9ffe8d20b4.zip cpython-34721d56833932ccaaff6c6b0ff1bb9ffe8d20b4.tar.gz cpython-34721d56833932ccaaff6c6b0ff1bb9ffe8d20b4.tar.bz2 |
Deprecate al/AL for removal in 3.0.
Diffstat (limited to 'Lib/plat-irix5')
-rwxr-xr-x | Lib/plat-irix5/AL.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/plat-irix5/AL.py b/Lib/plat-irix5/AL.py index ec941a2..3b43d2c 100755 --- a/Lib/plat-irix5/AL.py +++ b/Lib/plat-irix5/AL.py @@ -1,3 +1,7 @@ +from warnings import warnpy3k +warnpy3k("the AL module has been removed in Python 3.0", stacklevel=2) +del warnpy3k + RATE_48000 = 48000 RATE_44100 = 44100 RATE_32000 = 32000 |