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

Method mark_module_skipped

IPython/extensions/autoreload.py:149–155  ·  view source on GitHub ↗

Skip reloading the named module in the future

(self, module_name)

Source from the content-addressed store, hash-verified

147 self.check(check_all=True, do_reload=False)
148
149 def mark_module_skipped(self, module_name):
150 """Skip reloading the named module in the future"""
151 try:
152 del self.modules[module_name]
153 except KeyError:
154 pass
155 self.skip_modules[module_name] = True
156
157 def mark_module_reloadable(self, module_name):
158 """Reload the named module in the future (if it is imported)"""

Callers 1

aimportMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected