diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-07-17 16:55:47 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-07-17 16:55:47 (GMT) |
commit | 6f4f24fdc312fb2a825835bf4c2be11e6c944c34 (patch) | |
tree | 1d7b5b6e5789982d75a865e081109efb9365e5d6 /Lib | |
parent | a851397ddcff527881407f25b13f836a3fc57ee5 (diff) | |
download | cpython-6f4f24fdc312fb2a825835bf4c2be11e6c944c34.zip cpython-6f4f24fdc312fb2a825835bf4c2be11e6c944c34.tar.gz cpython-6f4f24fdc312fb2a825835bf4c2be11e6c944c34.tar.bz2 |
fix 2/3 of test_threading
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_threading.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py index ed61309..13581f7 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") |