MCPcopy Index your code
hub / github.com/RustPython/RustPython / 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.45
test_sub_and_superMethod · 0.45
test_dirMethod · 0.45
test_sub_and_superMethod · 0.45
test_wrapper_objectMethod · 0.45
parse_hex_charFunction · 0.45
builtin_set.pyFile · 0.45

Calls

no outgoing calls

Tested by 4

test_sub_and_superMethod · 0.36
test_dirMethod · 0.36
test_sub_and_superMethod · 0.36
test_wrapper_objectMethod · 0.36