diff options
author | Fred Drake <fdrake@acm.org> | 2000-08-17 05:06:49 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-08-17 05:06:49 (GMT) |
commit | 227b1204681a8bd7077bf1f8e9098b7e2e9f4c13 (patch) | |
tree | 25e36d9096e5ddcde4a12065b5d38d4dd9beed56 /Lib/audiodev.py | |
parent | 9b8d801c37fa29420848ebc1b50c601893b36287 (diff) | |
download | cpython-227b1204681a8bd7077bf1f8e9098b7e2e9f4c13.zip cpython-227b1204681a8bd7077bf1f8e9098b7e2e9f4c13.tar.gz cpython-227b1204681a8bd7077bf1f8e9098b7e2e9f4c13.tar.bz2 |
Convert some old-style string exceptions to class exceptions.
Diffstat (limited to 'Lib/audiodev.py')
-rw-r--r-- | Lib/audiodev.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/audiodev.py b/Lib/audiodev.py index e7cff6c..9d4ddc2 100644 --- a/Lib/audiodev.py +++ b/Lib/audiodev.py @@ -1,6 +1,7 @@ """Classes for manipulating audio devices (currently only for Sun and SGI)""" -error = 'audiodev.error' +class error(Exception): + pass class Play_Audio_sgi: # Private instance variables |