Make test_wave.py pass.

I have no illusion that this fixes all issues with this module.
This commit is contained in:
Guido van Rossum 2007-07-23 21:28:30 +00:00
parent f761e104f6
commit 51a883bf87
2 changed files with 6 additions and 6 deletions

View file

@ -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()