summaryrefslogtreecommitdiffstats
path: root/Lib/wave.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-11-21 09:04:22 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-11-21 09:04:22 (GMT)
commitf4fd257a028e22ab97e226ffd73715e9cead8eff (patch)
tree880acf6f230d6733c3edd74abac65954a0c75b6c /Lib/wave.py
parentbd3a7f90b51c6bd7d057bad9d7addd0bed8a6e7d (diff)
parentd9a018222f4a885ca3eeee41a77103f5462e3813 (diff)
downloadcpython-f4fd257a028e22ab97e226ffd73715e9cead8eff.zip
cpython-f4fd257a028e22ab97e226ffd73715e9cead8eff.tar.gz
cpython-f4fd257a028e22ab97e226ffd73715e9cead8eff.tar.bz2
Issue #19633: Fixed writing not compressed 16- and 32-bit wave files on
big-endian platforms. Temporary forbidden test_unseekable_incompleted_write fornot compressed 16- and 32-bit wave file on big-endian platforms.
Diffstat (limited to 'Lib/wave.py')
-rw-r--r--Lib/wave.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/wave.py b/Lib/wave.py
index 7de1cd0..672d04b 100644
--- a/Lib/wave.py
+++ b/Lib/wave.py
@@ -443,7 +443,9 @@ class Wave_write:
data = self._convert(data)
if self._sampwidth in (2, 4) and sys.byteorder == 'big':
import array
- data = array.array(_array_fmts[self._sampwidth], data)
+ a = array.array(_array_fmts[self._sampwidth])
+ a.frombytes(data)
+ data = a
assert data.itemsize == self._sampwidth
data.byteswap()
data.tofile(self._file)