Object to make sure that we keep set and _doc synchronized.
We sub-class MutableSet and maintain changes in doc.
Note that methods like union that return a set object do not alter
_doc, while methods like update that change a set object in-place do keep
_doc in sync.
|
|
|
issubset(self,
other,
fn=<function __le__ at 0x105a75b18>) |
source code
|
|
|
issuperset(self,
other,
fn=<function __ge__ at 0x105a75c80>) |
source code
|
|
|
symmetric_difference(self,
other,
fn=<function __xor__ at 0x105a790c8>) |
source code
|
|
|
__init__(self,
doc,
item_type=None)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Inherited from _abcoll.MutableSet :
__ior__ ,
__isub__ ,
__ixor__ ,
clear ,
pop ,
remove
Inherited from _abcoll.Set :
__and__ ,
__eq__ ,
__le__ ,
__lt__ ,
__or__ ,
__sub__ ,
isdisjoint
Inherited from _abcoll.Set (private):
_hash
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__sizeof__ ,
__str__
|