Package baxter_dataflow :: Module weakrefset :: Class WeakSet
[hide private]
[frames] | no frames]

Class WeakSet

source code

object --+
         |
        WeakSet

Instance Methods [hide private]
 
__init__(self, data=None)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
_commit_removals(self) source code
 
__iter__(self) source code
 
__len__(self) source code
 
__contains__(self, item) source code
 
__reduce__(self)
helper for pickle
source code
 
add(self, item) source code
 
clear(self) source code
 
copy(self) source code
 
pop(self) source code
 
remove(self, item) source code
 
discard(self, item) source code
 
update(self, other) source code
 
__ior__(self, other) source code
 
_apply(self, other, method) source code
 
difference(self, other) source code
 
__sub__(self, other) source code
 
difference_update(self, other) source code
 
__isub__(self, other) source code
 
intersection(self, other) source code
 
__and__(self, other) source code
 
intersection_update(self, other) source code
 
__iand__(self, other) source code
 
issubset(self, other) source code
 
__lt__(self, other) source code
 
__le__(self, other) source code
 
issuperset(self, other) source code
 
__gt__(self, other) source code
 
__ge__(self, other) source code
 
__eq__(self, other) source code
 
symmetric_difference(self, other) source code
 
__xor__(self, other) source code
 
symmetric_difference_update(self, other) source code
 
__ixor__(self, other) source code
 
union(self, other) source code
 
__or__(self, other) source code
 
isdisjoint(self, other) source code

Inherited from object: __delattr__, __format__, __getattribute__, __new__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  __hash__ = None
hash(x)
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, data=None)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

__reduce__(self)

source code 

helper for pickle

Overrides: object.__reduce__
(inherited documentation)