diff options
author | Guido van Rossum <guido@python.org> | 2007-07-23 21:28:30 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-07-23 21:28:30 (GMT) |
commit | 51a883bf87ec437e52a29bcd0ebd1d0bdd2d41e5 (patch) | |
tree | d1c5355b572a7d3f3798d185e4b9eccdebc372d8 /Lib/test/test_wave.py | |
parent | f761e104f61599c6f51c2efd9576c724f9fbf9a5 (diff) | |
download | cpython-51a883bf87ec437e52a29bcd0ebd1d0bdd2d41e5.zip cpython-51a883bf87ec437e52a29bcd0ebd1d0bdd2d41e5.tar.gz cpython-51a883bf87ec437e52a29bcd0ebd1d0bdd2d41e5.tar.bz2 |
Make test_wave.py pass.
I have no illusion that this fixes all issues with this module.
Diffstat (limited to 'Lib/test/test_wave.py')
-rw-r--r-- | Lib/test/test_wave.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_wave.py b/Lib/test/test_wave.py index 1a6ff5c..85f5566 100644 --- a/Lib/test/test_wave.py +++ b/Lib/test/test_wave.py @@ -16,7 +16,7 @@ f.setnchannels(nchannels) f.setsampwidth(sampwidth) f.setframerate(framerate) f.setnframes(nframes) -output = '\0' * nframes * nchannels * sampwidth +output = b'\0' * nframes * nchannels * sampwidth f.writeframes(output) f.close() |