|
From: <mi...@st...> - 2002-10-29 17:07:36
|
Michael Engelhart wrote: > The result of the operation is succesful either way in > that it deletes the dn passed to it which is really all I care about > anyway. I'll just ignore results from delete. Thanks to the early design decision of David you don't have to do error handling by checking result codes. If an error occurs during deletion of an entry an exception of class ldap.LDAPError or a derived error class is raised. You can safely ignore results of add_s(), bind_s(), delete_s(), modify_s(), modrdn_s(), rename_s() and unbind_s(). Ciao, Michael. |