[Zope-Checkins] CVS: ZODB3/ZODB - BaseStorage.py:1.33

Barry Warsaw barry@wooz.org
Tue, 4 Feb 2003 12:17:31 -0500


Update of /cvs-repository/ZODB3/ZODB
In directory cvs.zope.org:/tmp/cvs-serv24404

Modified Files:
	BaseStorage.py 
Log Message:
copyTransactionsFrom(): Document that `other' need only have an
iterator() method.


=== ZODB3/ZODB/BaseStorage.py 1.32 => 1.33 ===
--- ZODB3/ZODB/BaseStorage.py:1.32	Thu Jan  9 18:56:28 2003
+++ ZODB3/ZODB/BaseStorage.py	Tue Feb  4 12:17:29 2003
@@ -256,7 +256,8 @@
     def copyTransactionsFrom(self, other, verbose=0):
         """Copy transactions from another storage.
 
-        This is typically used for converting data from one storage to another.
+        This is typically used for converting data from one storage to
+        another.  `other' must have an .iterator() method.
         """
         _ts=None
         ok=1