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

Class JournaledLDAPAttributeSet

source code

               object --+        
                        |        
                      set --+    
                            |    
attributeset.LDAPAttributeSet --+
                                |
                               JournaledLDAPAttributeSet

Instance Methods [hide private]
new empty set object
__init__(self, ldapObject, *a, **kw)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
add(self, value)
Add an element to a set.
source code
 
update(self, sequence)
Update a set with the union of itself and others.
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 set: __and__, __cmp__, __contains__, __ge__, __getattribute__, __gt__, __iand__, __ior__, __isub__, __iter__, __ixor__, __le__, __len__, __lt__, __new__, __or__, __rand__, __reduce__, __ror__, __rsub__, __rxor__, __sizeof__, __sub__, __xor__, difference_update, discard, intersection_update, isdisjoint, issubset, issuperset, pop, symmetric_difference_update

Inherited from object: __delattr__, __format__, __reduce_ex__, __setattr__, __str__, __subclasshook__

Class Variables [hide private]

Inherited from set: __hash__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

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

source code 

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

Returns: new empty set object
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: set.add
(inherited documentation)

update(self, sequence)

source code 

Update a set with the union of itself and others.

Overrides: 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: set.remove
(inherited documentation)

clear(self)

source code 

Remove all elements from this set.

Overrides: set.clear
(inherited documentation)