mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 17:34:54 +01:00
python: wrap and use notmuch_database_destroy as destructor
Adapt the python bindings to the notmuch_database_close split. Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>
This commit is contained in:
parent
288feb7cdf
commit
7bfc4bf501
1 changed files with 10 additions and 4 deletions
|
@ -161,8 +161,13 @@ class Database(object):
|
|||
else:
|
||||
self.create(path)
|
||||
|
||||
_destroy = nmlib.notmuch_database_destroy
|
||||
_destroy.argtypes = [NotmuchDatabaseP]
|
||||
_destroy.restype = None
|
||||
|
||||
def __del__(self):
|
||||
self.close()
|
||||
if self._db:
|
||||
self._destroy(self._db)
|
||||
|
||||
def _assert_db_is_initialized(self):
|
||||
"""Raises :exc:`NotInitializedError` if self._db is `None`"""
|
||||
|
@ -218,10 +223,11 @@ class Database(object):
|
|||
_close.restype = None
|
||||
|
||||
def close(self):
|
||||
"""Close and free the notmuch database if needed"""
|
||||
if self._db is not None:
|
||||
'''
|
||||
Closes the notmuch database.
|
||||
'''
|
||||
if self._db:
|
||||
self._close(self._db)
|
||||
self._db = None
|
||||
|
||||
def __enter__(self):
|
||||
'''
|
||||
|
|
Loading…
Reference in a new issue