Marks this module as having a stale public interface, and discards the cache data.
(self)
| 3051 | self.manager.rechecked_modules.add(self.id) |
| 3052 | |
| 3053 | def mark_interface_stale(self) -> None: |
| 3054 | """Marks this module as having a stale public interface, and discards the cache data.""" |
| 3055 | self.manager.stale_modules.add(self.id) |
| 3056 | |
| 3057 | def check_blockers(self) -> None: |
| 3058 | """Raise CompileError if a blocking error is detected.""" |
no test coverage detected