changeset: 98017:24dbca4e746c user: Victor Stinner date: Tue Sep 15 22:55:52 2015 +0200 files: Lib/test/test_eintr.py description: Issue #25122: test_eintr: don't redirect stdout to stderr sys.stderr is sometimes a StringIO. The redirection was just a hack to see eintr_tester.py output in red in the buildbot output. diff -r 73f8fca329cb -r 24dbca4e746c Lib/test/test_eintr.py --- a/Lib/test/test_eintr.py Tue Sep 15 22:43:05 2015 +0200 +++ b/Lib/test/test_eintr.py Tue Sep 15 22:55:52 2015 +0200 @@ -20,7 +20,7 @@ # FIXME: Issue #25122, always run in verbose mode to debug hang on FreeBSD if True: #support.verbose: args = [sys.executable, tester] - with subprocess.Popen(args, stdout=sys.stderr) as proc: + with subprocess.Popen(args) as proc: exitcode = proc.wait() self.assertEqual(exitcode, 0) else: