diff options
| author | Sebastian Spaeth <sebastian@sspaeth.de> | 2010-03-19 08:44:34 +0100 |
|---|---|---|
| committer | Sebastian Spaeth <sebastian@sspaeth.de> | 2010-03-19 08:44:34 +0100 |
| commit | ca388481428cd7dfa5e75c474567e6880c2ce60f (patch) | |
| tree | a05bd4efe701ac609f1669f50f25f356464bddd8 | |
| parent | cd19699e0d32eccc6481c0a3294b38c4fe0042e8 (diff) | |
Query(): Fix _nmlib -> nmlib type & clarify docs a bit
| -rw-r--r-- | cnotmuch/database.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/cnotmuch/database.py b/cnotmuch/database.py index 6a74f5d5..6a118bdf 100644 --- a/cnotmuch/database.py +++ b/cnotmuch/database.py @@ -252,7 +252,7 @@ class Query(object): """notmuch_query_count_messages""" - _count_messages = _nmlib.notmuch_query_count_messages + _count_messages = nmlib.notmuch_query_count_messages _count_messages.restype = c_uint def __init__(self, db, querystr): @@ -336,9 +336,10 @@ class Query(object): """Estimate the number of messages matching the query This function performs a search and returns Xapian's best - guess as to the number of matching messages. It is somewhat - faster than performing :meth:`search_messages` and counting - the result with `len()`. Technically, it wraps the underlying + guess as to the number of matching messages. It is much faster + than performing :meth:`search_messages` and counting the + result with `len()` (although it always returned the same + result in my tests). Technically, it wraps the underlying *notmuch_query_count_messages* function. :returns: :class:`Messages` |
