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

Function stderr_read

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

Source from the content-addressed store, hash-verified

102 print(line, file=sys.stdout)
103
104 def stderr_read():
105 for line in read_no_interrupt(p.stderr).splitlines():
106 line = line.decode(enc, 'replace')
107 print(line, file=sys.stderr)
108
109 Thread(target=stdout_read).start()
110 Thread(target=stderr_read).start()

Callers

nothing calls this directly

Calls 1

read_no_interruptFunction · 0.85

Tested by

no test coverage detected