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

Method write_err

IPython/core/interactiveshell.py:3625–3629  ·  view source on GitHub ↗

DEPRECATED: Write a string to the default error output

(self,data)

Source from the content-addressed store, hash-verified

3623
3624 @undoc
3625 def write_err(self,data):
3626 """DEPRECATED: Write a string to the default error output"""
3627 warn('InteractiveShell.write_err() is deprecated, use sys.stderr instead',
3628 DeprecationWarning, stacklevel=2)
3629 sys.stderr.write(data)
3630
3631 def ask_yes_no(self, prompt, default=None, interrupt=None):
3632 if self.quiet:

Callers

nothing calls this directly

Calls 1

writeMethod · 0.45

Tested by

no test coverage detected