From 51a883bf87ec437e52a29bcd0ebd1d0bdd2d41e5 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 23 Jul 2007 21:28:30 +0000 Subject: Make test_wave.py pass. I have no illusion that this fixes all issues with this module. --- Lib/test/test_wave.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/test/test_wave.py') diff --git a/Lib/test/test_wave.py b/Lib/test/test_wave.py index 1a6ff5c4e7..85f55669b8 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() -- cgit v1.2.1