Package MySQLdb :: Class DBAPISet
[show private | hide private]
[frames | no frames]

Type DBAPISet

object --+        
         |        
   BaseSet --+    
             |    
  ImmutableSet --+
                 |
                DBAPISet


A special type of set for which A == x is true if A is a DBAPISet and x is a member of that set.


Method Summary
  __eq__(self, other)
  __ne__(self, other)
    Inherited from ImmutableSet
  __init__(self, iterable)
Construct an immutable set from an optional iterable.
  __getstate__(self)
  __hash__(self)
  __setstate__(self, state)
    Inherited from BaseSet
  __and__(self, other)
Return the intersection of two sets as a new set.
  __cmp__(self, other)
  __contains__(self, element)
Report whether an element is a member of a set.
  __copy__(self)
Return a shallow copy of a set.
  __deepcopy__(self, memo)
Return a deep copy of a set; used by copy module.
  __ge__(self, other)
Report whether this set contains another set.
  __gt__(self, other)
  __iter__(self)
Return an iterator over the elements or a set.
  __le__(self, other)
Report whether another set contains this set.
  __len__(self)
Return the number of elements of a set.
  __lt__(self, other)
  __or__(self, other)
Return the union of two sets as a new set.
  __repr__(self)
Return string representation of a set.
  __str__(self)
Return string representation of a set.
  __sub__(self, other)
Return the difference of two sets as a new Set.
  __xor__(self, other)
Return the symmetric difference of two sets as a new set.
  copy(self)
Return a shallow copy of a set.
  difference(self, other)
Return the difference of two sets as a new Set.
  intersection(self, other)
Return the intersection of two sets as a new set.
  issubset(self, other)
Report whether another set contains this set.
  issuperset(self, other)
Report whether this set contains another set.
  symmetric_difference(self, other)
Return the symmetric difference of two sets as a new set.
  union(self, other)
Return the union of two sets as a new set.
  _binary_sanity_check(self, other)
  _compute_hash(self)
  _repr(self, sorted)
  _update(self, iterable)
    Inherited from object
  __delattr__(...)
x.__delattr__('name') <==> del x.name
  __getattribute__(...)
x.__getattribute__('name') <==> x.name
  __new__(T, S, ...)
T.__new__(S, ...) -> a new object with type S, a subtype of T
  __reduce__(...)
helper for pickle
  __reduce_ex__(...)
helper for pickle
  __setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Class Variable Summary
    Inherited from ImmutableSet
list __slots__ = ['_hashcode']
member_descriptor _hashcode = <member '_hashcode' of 'ImmutableSet' object...
    Inherited from BaseSet
member_descriptor _data = <member '_data' of 'BaseSet' objects>

Generated by Epydoc 2.1 on Sat Mar 3 21:14:17 2007 http://epydoc.sf.net