[Zope-Checkins] CVS: ZODB3/ZEO - ClientStorage.py:1.106.4.6

Jeremy Hylton jeremy at zope.com
Mon Sep 29 11:19:42 EDT 2003


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

Modified Files:
      Tag: Zope-2_7-branch
	ClientStorage.py 
Log Message:
Add default value for timeout in case callers other than __init__
exist.


=== ZODB3/ZEO/ClientStorage.py 1.106.4.5 => 1.106.4.6 ===
--- ZODB3/ZEO/ClientStorage.py:1.106.4.5	Mon Sep 29 11:04:38 2003
+++ ZODB3/ZEO/ClientStorage.py	Mon Sep 29 11:19:41 2003
@@ -316,7 +316,7 @@
             if not self._ready.isSet():
                 self._cache.open()
 
-    def _wait(self, timeout):
+    def _wait(self, timeout=None):
         if timeout is not None:
             deadline = time.time() + timeout
         # Wait for a connection to be established.




More information about the Zope-Checkins mailing list