Searched refs:StdOutputFile (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_run.py | 179 f = run.StdOutputFile(shell, 'stdout') 193 f = run.StdOutputFile(shell, 'stdout') 202 f = run.StdOutputFile(shell, 'stdout') 225 f = run.StdOutputFile(shell, 'stderr', 'iso-8859-15', 'backslashreplace') 245 f = run.StdOutputFile(shell, 'stdout') 275 f = run.StdOutputFile(shell, 'stdout')
|
/external/python/cpython3/Lib/idlelib/ |
D | run.py | 435 class StdOutputFile(StdioFile): class 505 sys.stdout = StdOutputFile(self.console, "stdout", 507 sys.stderr = StdOutputFile(self.console, "stderr",
|
D | pyshell.py | 57 from idlelib.run import idle_formatwarning, StdInputFile, StdOutputFile 906 self.stdout = StdOutputFile(self, "stdout", 908 self.stderr = StdOutputFile(self, "stderr", 910 self.console = StdOutputFile(self, "console",
|