[Zope3-checkins] CVS: Zope/lib/python/BTrees - convert.py:1.8
Jeremy Hylton
jeremy at zope.com
Wed Mar 3 09:32:09 EST 2004
Update of /cvs-repository/Zope/lib/python/BTrees
In directory cvs.zope.org:/tmp/cvs-serv18899/BTrees
Modified Files:
convert.py
Log Message:
Don't pass an argument to cacheMinimize(). The arg is ignored.
=== Zope/lib/python/BTrees/convert.py 1.7 => 1.8 ===
--- Zope/lib/python/BTrees/convert.py:1.7 Tue Oct 1 10:09:47 2002
+++ Zope/lib/python/BTrees/convert.py Wed Mar 3 09:31:38 2004
@@ -21,8 +21,8 @@
n=n+1
if n > threshold:
get_transaction().commit(1)
- old._p_jar.cacheMinimize(3)
+ old._p_jar.cacheMinimize()
n=0
get_transaction().commit(1)
- old._p_jar.cacheMinimize(3)
+ old._p_jar.cacheMinimize()
More information about the Zope3-Checkins
mailing list