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