summaryrefslogtreecommitdiff
path: root/Lib/test/test_ossaudiodev.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_ossaudiodev.py')
-rw-r--r--Lib/test/test_ossaudiodev.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_ossaudiodev.py b/Lib/test/test_ossaudiodev.py
index 371d1a752f..ed8f77070a 100644
--- a/Lib/test/test_ossaudiodev.py
+++ b/Lib/test/test_ossaudiodev.py
@@ -13,7 +13,7 @@ import audioop
SND_FORMAT_MULAW_8 = 1
def read_sound_file(path):
- fp = open(path, 'r')
+ fp = open(path, 'rb')
size, enc, rate, nchannels, extra = sunaudio.gethdr(fp)
data = fp.read()
fp.close()
@@ -30,7 +30,7 @@ def read_sound_file(path):
def play_sound_file(data, rate, ssize, nchannels):
try:
a = ossaudiodev.open('w')
- except ossaudiodev.error, msg:
+ except IOError, msg:
if msg[0] in (errno.EACCES, errno.ENODEV, errno.EBUSY):
raise TestSkipped, msg
raise TestFailed, msg