[Zodb-checkins] CVS: ZODB3/ZEO - ClientStorage.py:1.68

Barry Warsaw barry@wooz.org
Wed, 25 Sep 2002 18:02:44 -0400


Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv12652

Modified Files:
	ClientStorage.py 
Log Message:
undoLog(): Should have default arguments for first and last, to match
FileStorage/Berkeley storage definition, and undoInfo(), and the
storage interface definition.


=== ZODB3/ZEO/ClientStorage.py 1.67 => 1.68 ===
--- ZODB3/ZEO/ClientStorage.py:1.67	Mon Sep 23 16:24:54 2002
+++ ZODB3/ZEO/ClientStorage.py	Wed Sep 25 18:02:44 2002
@@ -507,7 +507,7 @@
     def undoInfo(self, first=0, last=-20, specification=None):
         return self._server.undoInfo(first, last, specification)
 
-    def undoLog(self, first, last, filter=None):
+    def undoLog(self, first=0, last=-20, filter=None):
         if filter is not None:
             return () # can't pass a filter to server