[Zope3-checkins] CVS: Zope3/src/zodb/storage - interfaces.py:1.11

Jeremy Hylton jeremy@zope.com
Thu, 13 Mar 2003 17:03:54 -0500


Update of /cvs-repository/Zope3/src/zodb/storage
In directory cvs.zope.org:/tmp/cvs-serv32068/storage

Modified Files:
	interfaces.py 
Log Message:
Add note about corner case for getSerial().


=== Zope3/src/zodb/storage/interfaces.py 1.10 => 1.11 ===
--- Zope3/src/zodb/storage/interfaces.py:1.10	Thu Mar 13 16:32:28 2003
+++ Zope3/src/zodb/storage/interfaces.py	Thu Mar 13 17:03:53 2003
@@ -107,7 +107,10 @@
         """
 
     def getSerial(oid):
-        """Return the current serial number for oid."""
+        """Return the current serial number for oid.
+
+        If the object is modified in the version, return that serial number.
+        """
 
     def store(oid, serial, data, refs, version, txn):
         """Store an object and returns a new serial number.