There are no implemented interfaces.
There are no attributes in this class.
copy()
Return a shallow copy of a set.
difference(other)
Return the difference of two sets as a new Set.
(I.e. all elements that are in this set and not in the other.)
intersection(other)
Return the intersection of two sets as a new set.
(I.e. all elements that are in both sets.)
issubset(other)
Report whether another set contains this set.
issuperset(other)
Report whether this set contains another set.
symmetric_difference(other)
Return the symmetric difference of two sets as a new set.
(I.e. all elements that are in exactly one of the sets.)
union(other)
Return the union of two sets as a new set.
(I.e. all elements that are in either set.)
There are no known subclasses.