Reload the named module in the future (if it is imported)
(self, module_name)
| 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""" |