Searched refs:StdOutputFile (Results 1 – 3 of 3) sorted by relevance
/third_party/python/Lib/idlelib/idle_test/ |
D | test_run.py | 220 f = run.StdOutputFile(shell, 'stdout') 234 f = run.StdOutputFile(shell, 'stdout') 243 f = run.StdOutputFile(shell, 'stdout') 266 f = run.StdOutputFile(shell, 'stderr', 'iso-8859-15', 'backslashreplace') 286 f = run.StdOutputFile(shell, 'stdout') 316 f = run.StdOutputFile(shell, 'stdout')
|
/third_party/python/Lib/idlelib/ |
D | run.py | 457 class StdOutputFile(StdioFile): class 527 sys.stdout = StdOutputFile(self.console, "stdout", 529 sys.stderr = StdOutputFile(self.console, "stderr",
|
D | pyshell.py | 60 from idlelib.run import idle_formatwarning, StdInputFile, StdOutputFile 938 self.stdout = StdOutputFile(self, "stdout", 940 self.stderr = StdOutputFile(self, "stderr", 942 self.console = StdOutputFile(self, "console",
|