Lines Matching refs:stdout
128 print(f"stdout: {sys.stdout.encoding}/{sys.stdout.errors}")
136 'stdout: utf-8/surrogateescape',
144 'stdout: iso8859-1/strict',
151 'stdout: utf-8/namereplace',
260 # Use stdout as TTY
261 if not sys.stdout.isatty():
262 self.skipTest("sys.stdout is not a TTY")
267 code = (f'import os, sys; fd = sys.stdout.fileno(); '
272 # The stdout TTY is inherited to the child process