[Zodb-checkins] SVN: ZODB/trunk/src/ZODB/interfaces.py rearranged
	method order.
    Jim Fulton 
    jim at zope.com
       
    Sun Apr 22 14:05:11 EDT 2007
    
    
  
Log message for revision 74589:
  rearranged method order.
  
Changed:
  U   ZODB/trunk/src/ZODB/interfaces.py
-=-
Modified: ZODB/trunk/src/ZODB/interfaces.py
===================================================================
--- ZODB/trunk/src/ZODB/interfaces.py	2007-04-22 18:04:12 UTC (rev 74588)
+++ ZODB/trunk/src/ZODB/interfaces.py	2007-04-22 18:05:11 UTC (rev 74589)
@@ -324,6 +324,12 @@
         there would be so many that it would be inefficient to do so.        
         """
 
+    def invalidate(transaction_id, oids, version=''):
+        """Invalidate object ids committed by the given transaction
+
+        The oids argument is an iterable of object identifiers.
+        """
+
     def references(record, oids=None):
         """Scan the given record for object ids
 
@@ -332,13 +338,7 @@
         be created and returned.
         """
 
-    def invalidate(transaction_id, oids, version=''):
-        """Invalidate object ids committed by the given transaction
 
-        The oids argument is an iterable of object identifiers.
-        """
-
-
 class IDatabase(IStorageDB):
     """ZODB DB.
 
    
    
More information about the Zodb-checkins
mailing list