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

Function atomic_writing

IPython/utils/io.py:214–218  ·  view source on GitHub ↗

DEPRECATED: moved to notebook.services.contents.fileio

(*args, **kwargs)

Source from the content-addressed store, hash-verified

212
213@undoc
214def atomic_writing(*args, **kwargs):
215 """DEPRECATED: moved to notebook.services.contents.fileio"""
216 warn("IPython.utils.io.atomic_writing has moved to notebook.services.contents.fileio since IPython 4.0", DeprecationWarning, stacklevel=2)
217 from notebook.services.contents.fileio import atomic_writing
218 return atomic_writing(*args, **kwargs)
219
220@undoc
221def raw_print(*args, **kw):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected