Package ldaptor :: Package protocols :: Package ldap :: Module ldapsyntax :: Class JournaledLDAPAttributeSet
[hide private]
[frames] | no frames]

Class JournaledLDAPAttributeSet

source code

           object --+            
                    |            
         sets.BaseSet --+        
                        |        
                 sets.Set --+    
                            |    
attributeset.LDAPAttributeSet --+
                                |
                               JournaledLDAPAttributeSet

Instance Methods [hide private]
 
__init__(self, ldapObject, *a, **kw)
Construct a set from an optional iterable.
source code
 
add(self, value)
Add an element to a set.
source code
 
update(self, sequence)
Add all values from an iterable (such as a list or file).
source code
 
remove(self, value)
Remove an element from a set; it must be a member.
source code
 
clear(self)
Remove all elements from this set.
source code

Inherited from attributeset.LDAPAttributeSet: __copy__, __deepcopy__, __eq__, __ne__, __repr__, copy, difference, intersection, symmetric_difference, union

Inherited from sets.Set: __as_immutable__, __as_temporarily_immutable__, __getstate__, __iand__, __ior__, __isub__, __ixor__, __setstate__, difference_update, discard, intersection_update, pop, symmetric_difference_update, union_update

Inherited from sets.BaseSet: __and__, __cmp__, __contains__, __ge__, __gt__, __iter__, __le__, __len__, __lt__, __or__, __str__, __sub__, __xor__, issubset, issuperset

Inherited from sets.BaseSet (private): _binary_sanity_check, _compute_hash, _repr, _update

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

Class Variables [hide private]

Inherited from sets.BaseSet: __hash__

Properties [hide private]

Inherited from sets.BaseSet (private): _data

Inherited from object: __class__

Method Details [hide private]

__init__(self, ldapObject, *a, **kw)
(Constructor)

source code 

Construct a set from an optional iterable.

Overrides: object.__init__
(inherited documentation)

add(self, value)

source code 

Add an element to a set.

This has no effect if the element is already present.

Overrides: sets.Set.add
(inherited documentation)

update(self, sequence)

source code 

Add all values from an iterable (such as a list or file).

Overrides: sets.Set.update
(inherited documentation)

remove(self, value)

source code 

Remove an element from a set; it must be a member.

If the element is not a member, raise a KeyError.

Overrides: sets.Set.remove
(inherited documentation)

clear(self)

source code 

Remove all elements from this set.

Overrides: sets.Set.clear
(inherited documentation)