MCPcopy Index your code
hub / github.com/python/cpython / issuperset

Method issuperset

Lib/_weakrefset.py:110–111  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

108 return self.data < set(map(ref, other))
109
110 def issuperset(self, other):
111 return self.data.issuperset(ref(item) for item in other)
112 __ge__ = issuperset
113
114 def __gt__(self, other):

Callers 7

_parse_hextetMethod · 0.80
test_sub_and_superMethod · 0.80
test_dirMethod · 0.80
_test_set_comparisonsMethod · 0.80
test_sub_and_superMethod · 0.80
test_wrapper_objectMethod · 0.80
parse_hex_charFunction · 0.80

Calls

no outgoing calls

Tested by 5

test_sub_and_superMethod · 0.64
test_dirMethod · 0.64
_test_set_comparisonsMethod · 0.64
test_sub_and_superMethod · 0.64
test_wrapper_objectMethod · 0.64