_weakrefset
index
/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/_weakrefset.py
Module Docs

# Access WeakSet through the weakref module.
# This code is separated-out because it is needed
# by abc.py to load everything else at startup.

 
Classes
       
__builtin__.object
WeakSet

 
class WeakSet(__builtin__.object)
     Methods defined here:
__and__ = intersection(self, other)
__contains__(self, item)
__eq__(self, other)
__ge__ = issuperset(self, other)
__gt__(self, other)
__iand__(self, other)
__init__(self, data=None)
__ior__(self, other)
__isub__(self, other)
__iter__(self)
__ixor__(self, other)
__le__ = issubset(self, other)
__len__(self)
__lt__(self, other)
__ne__(self, other)
__or__ = union(self, other)
__reduce__(self)
__sub__ = difference(self, other)
__xor__ = symmetric_difference(self, other)
add(self, item)
clear(self)
copy(self)
difference(self, other)
difference_update(self, other)
discard(self, item)
intersection(self, other)
intersection_update(self, other)
isdisjoint(self, other)
issubset(self, other)
issuperset(self, other)
pop(self)
remove(self, item)
symmetric_difference(self, other)
symmetric_difference_update(self, other)
union(self, other)
update(self, other)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
__hash__ = None

 
Data
        __all__ = ['WeakSet']