DEPRECATED: Raw print to sys.__stdout__, otherwise identical interface to print().
(*args, **kw)
| 219 | |
| 220 | @undoc |
| 221 | def 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 |
| 230 | def raw_print_err(*args, **kw): |