[Python-3000-checkins] r56285 - python/branches/py3k-struni/Lib/test/test_poll.py

guido.van.rossum python-3000-checkins at python.org
Wed Jul 11 22:43:16 CEST 2007


Author: guido.van.rossum
Date: Wed Jul 11 22:43:16 2007
New Revision: 56285

Modified:
   python/branches/py3k-struni/Lib/test/test_poll.py
Log:
Fix test_poll.py.  By Christian Heimes.


Modified: python/branches/py3k-struni/Lib/test/test_poll.py
==============================================================================
--- python/branches/py3k-struni/Lib/test/test_poll.py	(original)
+++ python/branches/py3k-struni/Lib/test/test_poll.py	Wed Jul 11 22:43:16 2007
@@ -25,7 +25,7 @@
         p = select.poll()
 
         NUM_PIPES = 12
-        MSG = " This is a test."
+        MSG = b" This is a test."
         MSG_LEN = len(MSG)
         readers = []
         writers = []


More information about the Python-3000-checkins mailing list