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

Method mark_module_skipped

IPython/extensions/autoreload.py:208–214  ·  view source on GitHub ↗

Skip reloading the named module in the future

(self, module_name)

Source from the content-addressed store, hash-verified

206 self.hide_errors = False
207
208 def mark_module_skipped(self, module_name):
209 """Skip reloading the named module in the future"""
210 try:
211 del self.modules[module_name]
212 except KeyError:
213 pass
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)"""

Callers 1

aimportMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected