mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
Query() stub
--HG-- extra : transplant_source : %1E%14%7B%E7J%DD%96O%C7%E6%B5%FB%D8V%7B%0F%7C%25ot
This commit is contained in:
parent
7b9ddcb6a6
commit
0e90d656fc
1 changed files with 9 additions and 0 deletions
|
@ -142,6 +142,15 @@ class Database(object):
|
|||
"""Returns a pointer to the current notmuch_database_t or None"""
|
||||
return self._db
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
class Query(object):
|
||||
""" Wrapper around a notmuch_query_t
|
||||
|
||||
Do note that as soon as we tear down this object, all derived
|
||||
threads, and messages will be freed as well.
|
||||
"""
|
||||
def __init__(self, db, querystr):
|
||||
pass
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
class Tags(object):
|
||||
|
|
Loading…
Reference in a new issue