[Zope-Checkins] CVS: Zope/lib/python/Products/Transience - Transience.py:1.28.4.1

Chris McDonough chrism@zope.com
Sat, 26 Oct 2002 15:52:15 -0400


Update of /cvs-repository/Zope/lib/python/Products/Transience
In directory cvs.zope.org:/tmp/cvs-serv31373/lib/python/Products/Transience

Modified Files:
      Tag: chrism-install-branch
	Transience.py 
Log Message:
Merge with HEAD.  Again, sorry for the spew (what's left of it... someone seems to have filtered some of this branch's checkins out).


=== Zope/lib/python/Products/Transience/Transience.py 1.28 => 1.28.4.1 ===
--- Zope/lib/python/Products/Transience/Transience.py:1.28	Wed Aug 14 18:25:13 2002
+++ Zope/lib/python/Products/Transience/Transience.py	Sat Oct 26 15:51:44 2002
@@ -678,7 +678,7 @@
         # iterate over the keys in data that have no minimum value and
         # a maximum value of delete_end (note: ordered set)
         # XXX- fixme.  range search doesn't always work (btrees bug)
-        for k in data.keys(None, delete_end):
+        for k in list(data.keys(None, delete_end)):
             if k > delete_end:
                 DEBUG and TLOG(
                     '_housekeep: broken range search (key %s > max %s)'