MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _diff_tuples

Method _diff_tuples

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

Source from the content-addressed store, hash-verified

478
479 @classmethod
480 def _diff_tuples(cls, left: CacheKey, right: CacheKey) -> str:
481 ck1 = CacheKey(left, [], None)
482 ck2 = CacheKey(right, [], None)
483 return ck1._diff(ck2)
484
485 def _whats_different(self, other: CacheKey) -> Iterator[str]:
486 k1 = self.key

Callers

nothing calls this directly

Calls 2

_diffMethod · 0.95
CacheKeyClass · 0.70

Tested by

no test coverage detected