X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=bindings%2Fpython%2Fnotmuch%2Fquery.py;h=ffb86df1ed3c5ec444f5aef9f4a772cdc301c9eb;hp=06c7b11bb8648de7488092c6c2d63efed3e13bf0;hb=HEAD;hpb=e1c1d33f3726f5cadb2f92d23735dcd1102fbc88 diff --git a/bindings/python/notmuch/query.py b/bindings/python/notmuch/query.py index 06c7b11b..ffb86df1 100644 --- a/bindings/python/notmuch/query.py +++ b/bindings/python/notmuch/query.py @@ -95,7 +95,7 @@ class Query(object): :exc:`NullPointerError` if the query creation failed (e.g. too little memory). :exc:`NotInitializedError` if the underlying db was not - intitialized. + initialized. """ db._assert_db_is_initialized() # create reference to parent db to keep it alive @@ -108,7 +108,7 @@ class Query(object): _set_sort = nmlib.notmuch_query_set_sort _set_sort.argtypes = [NotmuchQueryP, c_uint] - _set_sort.argtypes = None + _set_sort.restype = None def set_sort(self, sort): """Set the sort order future results will be delivered in @@ -121,7 +121,7 @@ class Query(object): _exclude_tag = nmlib.notmuch_query_add_tag_exclude _exclude_tag.argtypes = [NotmuchQueryP, c_char_p] - _exclude_tag.resttype = None + _exclude_tag.restype = None def exclude_tag(self, tagname): """Add a tag that will be excluded from the query results by default. @@ -140,7 +140,7 @@ class Query(object): _search_threads.restype = c_uint def search_threads(self): - """Execute a query for threads + r"""Execute a query for threads Execute a query for threads, returning a :class:`Threads` iterator. The returned threads are owned by the query and as such, will only be