diff roundup/backends/back_anydbm.py @ 3455:e01bc6d65fa9

fixed documentation of filter()... ...in the case of multiple values in a String search [SF#1373396]
author Richard Jones <richard@users.sourceforge.net>
date Fri, 13 Jan 2006 00:05:46 +0000
parents 4aeb0d0cf0d6
children 1142dafe0d7f
line wrap: on
line diff
--- a/roundup/backends/back_anydbm.py	Tue Jan 10 05:32:56 2006 +0000
+++ b/roundup/backends/back_anydbm.py	Fri Jan 13 00:05:46 2006 +0000
@@ -15,7 +15,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 #
-#$Id: back_anydbm.py,v 1.190 2005-10-07 05:35:03 richard Exp $
+#$Id: back_anydbm.py,v 1.191 2006-01-13 00:05:46 richard Exp $
 '''This module defines a backend that saves the hyperdatabase in a
 database chosen by anydbm. It is guaranteed to always be available in python
 versions >2.1.1 (the dumbdbm fallback in 2.1.1 and earlier has several
@@ -1574,9 +1574,11 @@
 
         "search_matches" is {nodeid: marker} or None
 
-        The filter must match all properties specificed - but if the
-        property value to match is a list, any one of the values in the
-        list may match for that property to match.
+        The filter must match all properties specificed. If the property
+        value to match is a list:
+        
+        1. String properties must match all elements in the list, and
+        2. Other properties must match any of the elements in the list.
         """
         if __debug__:
             start_t = time.time()

Roundup Issue Tracker: http://roundup-tracker.org/