diff options
author | Collin Winter <collinw@gmail.com> | 2007-03-27 04:55:27 (GMT) |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-03-27 04:55:27 (GMT) |
commit | e33761dcaa9f283e291127161fa9d65440d01f87 (patch) | |
tree | 7bb9789714255415bd05d686ba826ba5f123fe39 | |
parent | 3e81ec8c7c72a5e784c660876798bb3afd09157b (diff) | |
download | cpython-e33761dcaa9f283e291127161fa9d65440d01f87.zip cpython-e33761dcaa9f283e291127161fa9d65440d01f87.tar.gz cpython-e33761dcaa9f283e291127161fa9d65440d01f87.tar.bz2 |
Fix two bugs related to the remove of exception subscripting.
-rw-r--r-- | Lib/test/test_linuxaudiodev.py | 2 | ||||
-rw-r--r-- | Lib/test/test_ossaudiodev.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_linuxaudiodev.py b/Lib/test/test_linuxaudiodev.py index eac204f..340dc2d 100644 --- a/Lib/test/test_linuxaudiodev.py +++ b/Lib/test/test_linuxaudiodev.py @@ -28,7 +28,7 @@ def play_sound_file(path): try: a = linuxaudiodev.open('w') except linuxaudiodev.error as msg: - if msg[0] in (errno.EACCES, errno.ENOENT, errno.ENODEV, errno.EBUSY): + if msg.args[0] in (errno.EACCES, errno.ENOENT, errno.ENODEV, errno.EBUSY): raise TestSkipped, msg raise TestFailed, msg diff --git a/Lib/test/test_ossaudiodev.py b/Lib/test/test_ossaudiodev.py index e97e788..6ca1f74 100644 --- a/Lib/test/test_ossaudiodev.py +++ b/Lib/test/test_ossaudiodev.py @@ -49,7 +49,7 @@ def play_sound_file(data, rate, ssize, nchannels): try: dsp = ossaudiodev.open('w') except IOError as msg: - if msg[0] in (errno.EACCES, errno.ENOENT, errno.ENODEV, errno.EBUSY): + if msg.args[0] in (errno.EACCES, errno.ENOENT, errno.ENODEV, errno.EBUSY): raise TestSkipped, msg raise TestFailed, msg |