MCPcopy Create free account
hub / github.com/MagicStack/asyncpg / issuperset

Method issuperset

asyncpg/types.py:164–165  ·  view source on GitHub ↗
(self, other: Self)

Source from the content-addressed store, hash-verified

162 return self._issubset_lower(other) and self._issubset_upper(other)
163
164 def issuperset(self, other: Self) -> bool:
165 return other.issubset(self)
166
167 def __bool__(self) -> bool:
168 return not self._empty

Callers 1

test_range_issubsetMethod · 0.80

Calls 1

issubsetMethod · 0.80

Tested by 1

test_range_issubsetMethod · 0.64