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

Function raw_print

IPython/utils/io.py:221–227  ·  view source on GitHub ↗

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

(*args, **kw)

Source from the content-addressed store, hash-verified

219
220@undoc
221def raw_print(*args, **kw):
222 """DEPRECATED: Raw print to sys.__stdout__, otherwise identical interface to print()."""
223 warn("IPython.utils.io.raw_print has been deprecated since IPython 7.0", DeprecationWarning, stacklevel=2)
224
225 print(*args, sep=kw.get('sep', ' '), end=kw.get('end', '\n'),
226 file=sys.__stdout__)
227 sys.__stdout__.flush()
228
229@undoc
230def raw_print_err(*args, **kw):

Callers

nothing calls this directly

Calls 1

flushMethod · 0.45

Tested by

no test coverage detected