Query(): Fix _nmlib -> nmlib type & clarify docs a bit

This commit is contained in:
Sebastian Spaeth 2010-03-19 08:44:34 +01:00
parent cd19699e0d
commit ca38848142

View file

@ -252,7 +252,7 @@ class Query(object):
"""notmuch_query_count_messages""" """notmuch_query_count_messages"""
_count_messages = _nmlib.notmuch_query_count_messages _count_messages = nmlib.notmuch_query_count_messages
_count_messages.restype = c_uint _count_messages.restype = c_uint
def __init__(self, db, querystr): def __init__(self, db, querystr):
@ -336,9 +336,10 @@ class Query(object):
"""Estimate the number of messages matching the query """Estimate the number of messages matching the query
This function performs a search and returns Xapian's best This function performs a search and returns Xapian's best
guess as to the number of matching messages. It is somewhat guess as to the number of matching messages. It is much faster
faster than performing :meth:`search_messages` and counting than performing :meth:`search_messages` and counting the
the result with `len()`. Technically, it wraps the underlying result with `len()` (although it always returned the same
result in my tests). Technically, it wraps the underlying
*notmuch_query_count_messages* function. *notmuch_query_count_messages* function.
:returns: :class:`Messages` :returns: :class:`Messages`