Commit de31996b authored by Christian Zagrodnick's avatar Christian Zagrodnick

removed trailing whitespace

parent 1ea5ab61
...@@ -315,27 +315,27 @@ class IBTreeModule(Interface): ...@@ -315,27 +315,27 @@ class IBTreeModule(Interface):
BTree = Attribute( BTree = Attribute(
"""The IBTree for this module. """The IBTree for this module.
Also available as [prefix]BTree, as in IOBTree.""") Also available as [prefix]BTree, as in IOBTree.""")
Bucket = Attribute( Bucket = Attribute(
"""The leaf-node data buckets used by the BTree. """The leaf-node data buckets used by the BTree.
(IBucket is not currently defined in this file, but is essentially (IBucket is not currently defined in this file, but is essentially
IDictionaryIsh, with the exception of __nonzero__, as of this IDictionaryIsh, with the exception of __nonzero__, as of this
writing.) writing.)
Also available as [prefix]Bucket, as in IOBucket.""") Also available as [prefix]Bucket, as in IOBucket.""")
TreeSet = Attribute( TreeSet = Attribute(
"""The ITreeSet for this module. """The ITreeSet for this module.
Also available as [prefix]TreeSet, as in IOTreeSet.""") Also available as [prefix]TreeSet, as in IOTreeSet.""")
Set = Attribute( Set = Attribute(
"""The ISet for this module: the leaf-node data buckets used by the """The ISet for this module: the leaf-node data buckets used by the
TreeSet. TreeSet.
Also available as [prefix]BTree, as in IOSet.""") Also available as [prefix]BTree, as in IOSet.""")
...@@ -456,37 +456,37 @@ class IBTreeFamily(Interface): ...@@ -456,37 +456,37 @@ class IBTreeFamily(Interface):
class IIntegerObjectBTreeModule(IBTreeModule, IMerge): class IIntegerObjectBTreeModule(IBTreeModule, IMerge):
"""keys, or set values, are integers; values are objects. """keys, or set values, are integers; values are objects.
describes IOBTree and LOBTree""" describes IOBTree and LOBTree"""
family = Attribute('The IBTreeFamily of this module') family = Attribute('The IBTreeFamily of this module')
class IObjectIntegerBTreeModule(IBTreeModule, IIMerge): class IObjectIntegerBTreeModule(IBTreeModule, IIMerge):
"""keys, or set values, are objects; values are integers. """keys, or set values, are objects; values are integers.
Object keys (and set values) must sort reliably (for instance, *not* on Object keys (and set values) must sort reliably (for instance, *not* on
object id)! Homogenous key types recommended. object id)! Homogenous key types recommended.
describes OIBTree and LOBTree""" describes OIBTree and LOBTree"""
family = Attribute('The IBTreeFamily of this module') family = Attribute('The IBTreeFamily of this module')
class IIntegerIntegerBTreeModule(IBTreeModule, IIMerge, IMergeIntegerKey): class IIntegerIntegerBTreeModule(IBTreeModule, IIMerge, IMergeIntegerKey):
"""keys, or set values, are integers; values are also integers. """keys, or set values, are integers; values are also integers.
describes IIBTree and LLBTree""" describes IIBTree and LLBTree"""
family = Attribute('The IBTreeFamily of this module') family = Attribute('The IBTreeFamily of this module')
class IObjectObjectBTreeModule(IBTreeModule, IMerge): class IObjectObjectBTreeModule(IBTreeModule, IMerge):
"""keys, or set values, are objects; values are also objects. """keys, or set values, are objects; values are also objects.
Object keys (and set values) must sort reliably (for instance, *not* on Object keys (and set values) must sort reliably (for instance, *not* on
object id)! Homogenous key types recommended. object id)! Homogenous key types recommended.
describes OOBTree""" describes OOBTree"""
# Note that there's no ``family`` attribute; all families include # Note that there's no ``family`` attribute; all families include
...@@ -495,9 +495,9 @@ class IObjectObjectBTreeModule(IBTreeModule, IMerge): ...@@ -495,9 +495,9 @@ class IObjectObjectBTreeModule(IBTreeModule, IMerge):
class IIntegerFloatBTreeModule(IBTreeModule, IMerge): class IIntegerFloatBTreeModule(IBTreeModule, IMerge):
"""keys, or set values, are integers; values are floats. """keys, or set values, are integers; values are floats.
describes IFBTree and LFBTree""" describes IFBTree and LFBTree"""
family = Attribute('The IBTreeFamily of this module') family = Attribute('The IBTreeFamily of this module')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment