(self, priority: int, patch: Callable[[], None])
| 7870 | return TypeType.make_normalized(self_type) |
| 7871 | |
| 7872 | def schedule_patch(self, priority: int, patch: Callable[[], None]) -> None: |
| 7873 | self.patches.append((priority, patch)) |
| 7874 | |
| 7875 | def report_hang(self) -> None: |
| 7876 | print("Deferral trace:") |
no test coverage detected