MCPcopy Create free account
hub / github.com/ipython/ipython / stdout_read

Function stdout_read

IPython/utils/_process_win32.py:99–102  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

97 enc = DEFAULT_ENCODING
98
99 def stdout_read():
100 for line in read_no_interrupt(p.stdout).splitlines():
101 line = line.decode(enc, 'replace')
102 print(line, file=sys.stdout)
103
104 def stderr_read():
105 for line in read_no_interrupt(p.stderr).splitlines():

Callers

nothing calls this directly

Calls 1

read_no_interruptFunction · 0.85

Tested by

no test coverage detected