[Zodb-checkins] SVN: ZODB/trunk/src/BTrees/Interfaces.py removed trailing whitespace

Christian Zagrodnick cz at gocept.com
Thu Jun 5 05:05:20 EDT 2008


Log message for revision 87161:
  removed trailing whitespace

Changed:
  U   ZODB/trunk/src/BTrees/Interfaces.py

-=-
Modified: ZODB/trunk/src/BTrees/Interfaces.py
===================================================================
--- ZODB/trunk/src/BTrees/Interfaces.py	2008-06-05 09:04:52 UTC (rev 87160)
+++ ZODB/trunk/src/BTrees/Interfaces.py	2008-06-05 09:05:20 UTC (rev 87161)
@@ -315,27 +315,27 @@
 
     BTree = Attribute(
         """The IBTree for this module.
-        
+
         Also available as [prefix]BTree, as in IOBTree.""")
 
     Bucket = Attribute(
         """The leaf-node data buckets used by the BTree.
-        
+
         (IBucket is not currently defined in this file, but is essentially
         IDictionaryIsh, with the exception of __nonzero__, as of this
         writing.)
-        
+
         Also available as [prefix]Bucket, as in IOBucket.""")
 
     TreeSet = Attribute(
         """The ITreeSet for this module.
-        
+
         Also available as [prefix]TreeSet, as in IOTreeSet.""")
 
     Set = Attribute(
         """The ISet for this module: the leaf-node data buckets used by the
         TreeSet.
-        
+
         Also available as [prefix]BTree, as in IOSet.""")
 
 
@@ -456,37 +456,37 @@
 
 class IIntegerObjectBTreeModule(IBTreeModule, IMerge):
     """keys, or set values, are integers; values are objects.
-    
+
     describes IOBTree and LOBTree"""
-    
+
     family = Attribute('The IBTreeFamily of this module')
 
 
 class IObjectIntegerBTreeModule(IBTreeModule, IIMerge):
     """keys, or set values, are objects; values are integers.
-    
+
     Object keys (and set values) must sort reliably (for instance, *not* on
     object id)!  Homogenous key types recommended.
-    
+
     describes OIBTree and LOBTree"""
-    
+
     family = Attribute('The IBTreeFamily of this module')
 
 
 class IIntegerIntegerBTreeModule(IBTreeModule, IIMerge, IMergeIntegerKey):
     """keys, or set values, are integers; values are also integers.
-    
+
     describes IIBTree and LLBTree"""
-    
+
     family = Attribute('The IBTreeFamily of this module')
 
 
 class IObjectObjectBTreeModule(IBTreeModule, IMerge):
     """keys, or set values, are objects; values are also objects.
-    
+
     Object keys (and set values) must sort reliably (for instance, *not* on
     object id)!  Homogenous key types recommended.
-    
+
     describes OOBTree"""
 
     # Note that there's no ``family`` attribute; all families include
@@ -495,9 +495,9 @@
 
 class IIntegerFloatBTreeModule(IBTreeModule, IMerge):
     """keys, or set values, are integers; values are floats.
-    
+
     describes IFBTree and LFBTree"""
-    
+
     family = Attribute('The IBTreeFamily of this module')
 
 



More information about the Zodb-checkins mailing list