Skip to content

Commit

Permalink
Set IOrdered interface on Storage parts
Browse files Browse the repository at this point in the history
  • Loading branch information
rnixx committed May 21, 2012
1 parent da9f10f commit 5fd34c2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/node/ext/zodb/parts.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from node.interfaces import (
INode,
IAttributes,
IOrdered,
)
from node.parts import Storage
from node.utils import (
Expand Down Expand Up @@ -72,6 +73,7 @@ def copy(self):
return copy.deepcopy(self)


@implementer(IOrdered)
class PodictStorage(ZODBPart, Storage):

@default
Expand All @@ -80,6 +82,7 @@ def storage(self):
return Podict()


@implementer(IOrdered)
class OOBTodictStorage(ZODBPart, Storage):

@default
Expand Down

0 comments on commit 5fd34c2

Please sign in to comment.