summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_poll.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-07-11 20:43:16 (GMT)
committerGuido van Rossum <guido@python.org>2007-07-11 20:43:16 (GMT)
commitbdab7d3cb6ec4de85c64e2f503975edfda7e11b9 (patch)
treee396610476f0a36257247b50db0d8f82c9124866 /Lib/test/test_poll.py
parent3ed0acceee29a43d6ddac60cf3f9ba610041a519 (diff)
downloadcpython-bdab7d3cb6ec4de85c64e2f503975edfda7e11b9.zip
cpython-bdab7d3cb6ec4de85c64e2f503975edfda7e11b9.tar.gz
cpython-bdab7d3cb6ec4de85c64e2f503975edfda7e11b9.tar.bz2
Fix test_poll.py. By Christian Heimes.
Diffstat (limited to 'Lib/test/test_poll.py')
-rw-r--r--Lib/test/test_poll.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_poll.py b/Lib/test/test_poll.py
index 6fbe1b6..4801640 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 = []