Lines Matching refs:stdout
26 failing example(s) and the cause(s) of the failure(s) are printed to stdout
34 and a detailed report of all examples tried is printed to stdout, along
356 A specialized version of the python debugger that redirects stdout
364 pdb.Pdb.__init__(self, stdout=out, nosigint=True)
381 # Redirect stdout to the given stream.
382 save_stdout = sys.stdout
383 sys.stdout = self.__out
388 sys.stdout = save_stdout
446 from stdout, or a traceback in case of exception). `want` ends
1193 should be displayed. It defaults to `sys.stdout.write`. If
1465 save_stdout = sys.stdout
1475 sys.stdout = self._fakeout
1477 # Patch pdb.set_trace to restore sys.stdout during interactive
1480 # save_stdout, even if that's not the real sys.stdout; this
1493 # Make sure sys.displayhook just prints the value to stdout
1500 sys.stdout = save_stdout
2202 old = sys.stdout
2219 sys.stdout = old