]> git.notmuchmail.org Git - notmuch/commitdiff
Query(): Fix _nmlib -> nmlib type & clarify docs a bit
authorSebastian Spaeth <sebastian@sspaeth.de>
Fri, 19 Mar 2010 07:44:34 +0000 (08:44 +0100)
committerSebastian Spaeth <sebastian@sspaeth.de>
Fri, 19 Mar 2010 07:44:34 +0000 (08:44 +0100)
cnotmuch/database.py

index 6a74f5d58014eaafeaef4e79b4d0d936b0d77442..6a118bdfe78b8d5fa134dbfc43c1f9b1253318ae 100644 (file)
@@ -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`