diff options
author | Tim Potter <tpot@samba.org> | 2006-04-30 00:38:19 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2006-04-30 00:38:19 +0000 |
commit | 1e20ef76f264e2a095f795a31db048d1f591a12f (patch) | |
tree | 329ae6d8a0387264d8baa27f0704ea986fbde1ce | |
parent | e4262f1a7fc2cbdd4458be028952876e0789fdd4 (diff) | |
download | samba-1e20ef76f264e2a095f795a31db048d1f591a12f.tar.gz samba-1e20ef76f264e2a095f795a31db048d1f591a12f.tar.xz samba-1e20ef76f264e2a095f795a31db048d1f591a12f.zip |
r15343: Some small cleanups.
Remove LdbMessage.close() method as it's not necessary.
-rw-r--r-- | source/lib/ldb/swig/Ldb.py | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/source/lib/ldb/swig/Ldb.py b/source/lib/ldb/swig/Ldb.py index 099fbcd6e0a..d00b2b0be1c 100644 --- a/source/lib/ldb/swig/Ldb.py +++ b/source/lib/ldb/swig/Ldb.py @@ -29,10 +29,16 @@ result = ldb_global_init() if result != 0: raise LdbError, (result, 'ldb_global_init failed') +# Ldb exceptions + class LdbError(Exception): - """An exception raised when a ldb error occurs.""" + """An exception raised when a ldb error occurs. + The exception data is a tuple consisting of the ldb number and a + string description of the error.""" pass +# Ldb classes + class LdbMessage: """A class representing a ldb message as a Python dictionary.""" @@ -41,9 +47,6 @@ class LdbMessage: self.msg = ldb_msg_new(self.mem_ctx) def __del__(self): - self.close() - - def close(self): if self.mem_ctx is not None: talloc_free(self.mem_ctx) self.mem_ctx = None @@ -88,7 +91,7 @@ class Ldb: self.mem_ctx = talloc_init('mem_ctx for ldb 0x%x' % id(self)) self.ldb_ctx = ldb_init(self.mem_ctx) - result = ldb_connect(self.ldb_ctx, url, flags, None) + result = ldb_connect(self.ldb_ctx, url, flags, None) if result != LDB_SUCCESS: raise LdbError, (result, ldb_strerror(result)) |