[Zodb-checkins] CVS: ZODB3/ZEO1 - ClientStorage.py:1.1.1.1.2.1

Jeremy Hylton jeremy@zope.com
Fri, 18 Oct 2002 15:47:55 -0400


Update of /cvs-repository/ZODB3/ZEO1
In directory cvs.zope.org:/tmp/cvs-serv9342

Modified Files:
      Tag: ZODB3-3_1-branch
	ClientStorage.py 
Log Message:
Add default arguments to undoLog(), required by test suite.


=== ZODB3/ZEO1/ClientStorage.py 1.1.1.1 => 1.1.1.1.2.1 ===
--- ZODB3/ZEO1/ClientStorage.py:1.1.1.1	Mon Aug 12 16:39:54 2002
+++ ZODB3/ZEO1/ClientStorage.py	Fri Oct 18 15:47:54 2002
@@ -531,7 +531,7 @@
             return self._call('undoInfo', first, last, specification)
         finally: self._lock_release()
 
-    def undoLog(self, first, last, filter=None):
+    def undoLog(self, first=0, last=-20, filter=None):
         if filter is not None: return ()
         
         self._lock_acquire()