summaryrefslogtreecommitdiffstats
path: root/Lib/test/audiotests.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/audiotests.py')
-rw-r--r--Lib/test/audiotests.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/test/audiotests.py b/Lib/test/audiotests.py
index 59e99287..008281f 100644
--- a/Lib/test/audiotests.py
+++ b/Lib/test/audiotests.py
@@ -6,7 +6,8 @@ import pickle
import sys
def byteswap2(data):
- a = array.array('h', data)
+ a = array.array('h')
+ a.frombytes(data)
a.byteswap()
return a.tobytes()
@@ -17,7 +18,8 @@ def byteswap3(data):
return bytes(ba)
def byteswap4(data):
- a = array.array('i', data)
+ a = array.array('i')
+ a.frombytes(data)
a.byteswap()
return a.tobytes()