From: Benjamin Peterson Date: Thu, 17 Jul 2008 16:55:47 +0000 (+0000) Subject: fix 2/3 of test_threading X-Git-Tag: v3.0b2~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6f4f24fdc312fb2a825835bf4c2be11e6c944c34;p=thirdparty%2FPython%2Fcpython.git fix 2/3 of test_threading --- diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py index ed6130980179..13581f770e50 100644 --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -339,7 +339,7 @@ class ThreadJoinOnShutdown(unittest.TestCase): import subprocess p = subprocess.Popen([sys.executable, "-c", script], stdout=subprocess.PIPE) rc = p.wait() - self.assertEqual(p.stdout.read(), "end of main\nend of thread\n") + self.assertEqual(p.stdout.read().decode(), "end of main\nend of thread\n") self.failIf(rc == 2, "interpreter was blocked") self.failUnless(rc == 0, "Unexpected error")