Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZODB
Commits
de31996b
Commit
de31996b
authored
Jun 05, 2008
by
Christian Zagrodnick
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed trailing whitespace
parent
1ea5ab61
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
16 deletions
+16
-16
src/BTrees/Interfaces.py
src/BTrees/Interfaces.py
+16
-16
No files found.
src/BTrees/Interfaces.py
View file @
de31996b
...
@@ -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'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment