Mercurial > p > roundup > code
diff roundup/backends/back_anydbm.py @ 1599:cc96bf971b33
extended date syntax to make range searches even more useful
| author | Andrey Lebedev <kedder@users.sourceforge.net> |
|---|---|
| date | Tue, 22 Apr 2003 20:53:55 +0000 |
| parents | 33a0d94c7658 |
| children | 8a908bbad1ef |
line wrap: on
line diff
--- a/roundup/backends/back_anydbm.py Mon Apr 21 22:38:48 2003 +0000 +++ b/roundup/backends/back_anydbm.py Tue Apr 22 20:53:55 2003 +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.119 2003-04-20 11:58:45 kedder Exp $ +#$Id: back_anydbm.py,v 1.120 2003-04-22 20:53:54 kedder 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 @@ -1767,10 +1767,10 @@ elif t == DATE or t == INTERVAL: if node[k] is None: break if v.to_value: - if not (v.from_value < node[k] and v.to_value > node[k]): + if not (v.from_value <= node[k] and v.to_value >= node[k]): break else: - if not (v.from_value < node[k]): + if not (v.from_value <= node[k]): break elif t == OTHER: # straight value comparison for the other types
