(cls, left: CacheKey, right: CacheKey)
| 485 | |
| 486 | @classmethod |
| 487 | def _diff_tuples(cls, left: CacheKey, right: CacheKey) -> str: |
| 488 | ck1 = CacheKey(left, []) |
| 489 | ck2 = CacheKey(right, []) |
| 490 | return ck1._diff(ck2) |
| 491 | |
| 492 | def _whats_different(self, other: CacheKey) -> Iterator[str]: |
| 493 | k1 = self.key |