Package lxml :: Package html :: Module setmixin :: Class SetMixin
[hide private]
[frames] | no frames]

Class SetMixin

source code

object --+
         |
        SetMixin
Known Subclasses:
CheckboxValues, MultipleSelectOptions

Mix-in for sets. You must define __iter__, add, remove

Instance Methods [hide private]
 
__len__(self) source code
 
__contains__(self, item) source code
 
issubset(self, other) source code
 
__le__(self, other) source code
 
issuperset(self, other) source code
 
__ge__(self, other) source code
 
union(self, other) source code
 
__or__(self, other) source code
 
intersection(self, other) source code
 
__and__(self, other) source code
 
difference(self, other) source code
 
__sub__(self, other) source code
 
symmetric_difference(self, other) source code
 
__xor__(self, other) source code
 
copy(self) source code
 
update(self, other) source code
 
__ior__(self, other) source code
 
intersection_update(self, other) source code
 
__iand__(self, other) source code
 
difference_update(self, other) source code
 
__isub__(self, other) source code
 
symmetric_difference_update(self, other) source code
 
__ixor__(self, other) source code
 
discard(self, item) source code
 
clear(self) source code

Inherited from object: __delattr__, __getattribute__, __hash__, __init__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Properties [hide private]

Inherited from object: __class__