MCPcopy Index your code
hub / github.com/ipython/ipython / mark_module_reloadable

Method mark_module_reloadable

IPython/extensions/autoreload.py:216–222  ·  view source on GitHub ↗

Reload the named module in the future (if it is imported)

(self, module_name)

Source from the content-addressed store, hash-verified

214 self.skip_modules[module_name] = True
215
216 def mark_module_reloadable(self, module_name):
217 """Reload the named module in the future (if it is imported)"""
218 try:
219 del self.skip_modules[module_name]
220 except KeyError:
221 pass
222 self.modules[module_name] = True
223
224 def clear_import_tracker(self):
225 """Clear the persistent import tracker state"""

Callers 1

aimport_moduleMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected