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

Method __init__

IPython/extensions/autoreload.py:427–431  ·  view source on GitHub ↗
(self, *a, **kw)

Source from the content-addressed store, hash-verified

425@magics_class
426class AutoreloadMagics(Magics):
427 def __init__(self, *a, **kw):
428 super(AutoreloadMagics, self).__init__(*a, **kw)
429 self._reloader = ModuleReloader()
430 self._reloader.check_all = False
431 self.loaded_modules = set(sys.modules)
432
433 @line_magic
434 def autoreload(self, parameter_s=''):

Callers

nothing calls this directly

Calls 2

ModuleReloaderClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected