MCPcopy Create free account
hub / github.com/ActiveState/code / items

Method items

recipes/Python/52258_a_Set_class_for_python/recipe-52258.py:42–44  ·  view source on GitHub ↗

Return a list containing all items.

(self)

Source from the content-addressed store, hash-verified

40 return len(self._dict)
41
42 def items(self):
43 """Return a list containing all items."""
44 return self._dict.keys()
45
46# class Set()

Callers 15

__reduce__Method · 0.45
__deepcopy__Method · 0.45
invertedDictFunction · 0.45
print_pathFunction · 0.45
print_exc_plusFunction · 0.45
dict_to_xmlFunction · 0.45
sortedDictValues1Function · 0.45
gotHeadersMethod · 0.45
getSilentMethod · 0.45
detectMethod · 0.45
countsMethod · 0.45
recipe-523033.pyFile · 0.45

Calls 1

keysMethod · 0.45

Tested by

no test coverage detected