Commit e891de3c authored by Serhiy Storchaka's avatar Serhiy Storchaka

Fixed the wave module testing on big-endian platforms.

array.fromfile() works only with file objects, not io.FileIO instances.
parent d551b285
...@@ -6,7 +6,7 @@ import pickle ...@@ -6,7 +6,7 @@ import pickle
import sys import sys
import base64 import base64
class UnseekableIO(io.FileIO): class UnseekableIO(file):
def tell(self): def tell(self):
raise io.UnsupportedOperation raise io.UnsupportedOperation
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment