Skip reloading the named module in the future
(self, module_name)
| 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)""" |