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

Function raw_print_err

IPython/utils/io.py:230–236  ·  view source on GitHub ↗

DEPRECATED: Raw print to sys.__stderr__, otherwise identical interface to print().

(*args, **kw)

Source from the content-addressed store, hash-verified

228
229@undoc
230def raw_print_err(*args, **kw):
231 """DEPRECATED: Raw print to sys.__stderr__, otherwise identical interface to print()."""
232 warn("IPython.utils.io.raw_print_err has been deprecated since IPython 7.0", DeprecationWarning, stacklevel=2)
233
234 print(*args, sep=kw.get('sep', ' '), end=kw.get('end', '\n'),
235 file=sys.__stderr__)
236 sys.__stderr__.flush()
237
238# used by IPykernel <- 4.9. Removed during IPython 7-dev period and re-added
239# Keep for a version or two then should remove

Callers

nothing calls this directly

Calls 1

flushMethod · 0.45

Tested by

no test coverage detected