Lines Matching refs:set
52 set_iterator = type(iter(set()))
529 """A set is a finite, iterable container.
633 """Compute the hash value of a set.
636 But if you define a hashable set type, its __hash__ should
670 """A mutable set is a finite, iterable container.
749 MutableSet.register(set)
764 # Tell ABCMeta.__new__ that this class should have TPFLAGS_MAPPING set.
787 "D.keys() -> a set-like object providing a view on D's keys"
791 "D.items() -> a set-like object providing a view on D's items"
830 return set(it)
848 return set(it)
960 'D.setdefault(k[,d]) -> D.get(k,d), also set D[k]=d if k not in D'
982 # Tell ABCMeta.__new__ that this class should have TPFLAGS_SEQUENCE set.