Home | History | Annotate | Download | only in test

Lines Matching refs:stdout

26 -v/--verbose    -- run tests in verbose mode with output to stdout
258 test_support.record_original_stdout(sys.stdout)
512 stdout=PIPE, stderr=PIPE,
515 stdout, stderr = popen.communicate()
519 stdout, _, result = stdout.strip().rpartition("\n")
525 stdout = test+'\n'+stdout
526 output.put((test, stdout.rstrip(), stderr.rstrip(), result))
536 test, stdout, stderr, result = output.get()
540 if stdout:
541 print stdout
544 sys.stdout.flush()
559 sys.stdout.flush()
638 sys.stdout.flush()
763 resources = ('sys.argv', 'cwd', 'sys.stdin', 'sys.stdout', 'sys.stderr',
780 return sys.stdout
782 sys.stdout = saved_stdout
879 save_stdout = sys.stdout
882 sys.stdout = capture_stdout
903 sys.stdout = save_stdout
907 sys.stdout.flush()
912 sys.stdout.flush()
943 sys.stdout.flush()
1127 """Print the elements of iterable x to stdout.