X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=bindings%2Fpython%2Fnotmuch%2Fquery.py;h=bdc18790abca01280acb6c95d02f3192481b2190;hp=a91bb74091c3392e3fe8f92f7641cf770f521bc9;hb=dc2b5a031bb63cd71133237ca5d74ef1223a8925;hpb=86cbd215eb67d7b996c977352a50e70c101cb641 diff --git a/bindings/python/notmuch/query.py b/bindings/python/notmuch/query.py index a91bb740..bdc18790 100644 --- a/bindings/python/notmuch/query.py +++ b/bindings/python/notmuch/query.py @@ -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 @@ -185,7 +185,7 @@ class Query(object): raise NullPointerError return Messages(msgs_p, self) - _count_messages = nmlib.notmuch_query_count_messages_st + _count_messages = nmlib.notmuch_query_count_messages _count_messages.argtypes = [NotmuchQueryP, POINTER(c_uint)] _count_messages.restype = c_uint @@ -204,7 +204,7 @@ class Query(object): raise NotmuchError(status) return count.value - _count_threads = nmlib.notmuch_query_count_threads_st + _count_threads = nmlib.notmuch_query_count_threads _count_threads.argtypes = [NotmuchQueryP, POINTER(c_uint)] _count_threads.restype = c_uint