MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / _diff_tuples

Method _diff_tuples

lib/sqlalchemy/sql/cache_key.py:487–490  ·  view source on GitHub ↗
(cls, left: CacheKey, right: CacheKey)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

_diffMethod · 0.95
CacheKeyClass · 0.85

Tested by

no test coverage detected