From: Guido van Rossum Date: Wed, 11 Jul 2007 20:43:16 +0000 (+0000) Subject: Fix test_poll.py. By Christian Heimes. X-Git-Tag: v3.0a1~683 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bdab7d3cb6ec4de85c64e2f503975edfda7e11b9;p=python Fix test_poll.py. By Christian Heimes. --- diff --git a/Lib/test/test_poll.py b/Lib/test/test_poll.py index 6fbe1b61a0..4801640d3e 100644 --- a/Lib/test/test_poll.py +++ b/Lib/test/test_poll.py @@ -25,7 +25,7 @@ class PollTests(unittest.TestCase): p = select.poll() NUM_PIPES = 12 - MSG = " This is a test." + MSG = b" This is a test." MSG_LEN = len(MSG) readers = [] writers = []