Skip to content

Commit

Permalink
adapt to C3 MRO
Browse files Browse the repository at this point in the history
  • Loading branch information
d-maurer committed Jun 24, 2021
1 parent e56ade8 commit 9c258a0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Products/PluginIndexes/PathIndex/PathIndex.py
Expand Up @@ -38,7 +38,7 @@


@implementer(IPathIndex, IQueryIndex, IUniqueValueIndex, ISortIndex)
class PathIndex(Persistent, SimpleItem):
class PathIndex(SimpleItem):

"""Index for paths returned by getPhysicalPath.
Expand Down
2 changes: 1 addition & 1 deletion src/Products/PluginIndexes/TopicIndex/TopicIndex.py
Expand Up @@ -35,7 +35,7 @@


@implementer(ITopicIndex, IQueryIndex, IUniqueValueIndex)
class TopicIndex(Persistent, SimpleItem):
class TopicIndex(SimpleItem):
"""A TopicIndex maintains a set of FilteredSet objects.
Every FilteredSet object consists of an expression and and IISet with all
Expand Down
4 changes: 2 additions & 2 deletions src/Products/ZCTextIndex/ZCTextIndex.py
Expand Up @@ -59,7 +59,7 @@


@implementer(IZCTextIndex, IQueryIndex, IPluggableIndex)
class ZCTextIndex(Persistent, Implicit, SimpleItem):
class ZCTextIndex(SimpleItem):

"""Persistent text index.
"""
Expand Down Expand Up @@ -319,7 +319,7 @@ def manage_addLexicon(self, id, title='', elements=[], REQUEST=None):


@implementer(IZCLexicon)
class PLexicon(Lexicon, Implicit, SimpleItem):
class PLexicon(Lexicon, SimpleItem):

"""Lexicon for ZCTextIndex.
"""
Expand Down
2 changes: 1 addition & 1 deletion src/Products/ZCatalog/ZCatalog.py
Expand Up @@ -84,7 +84,7 @@ def manage_addZCatalog(self, id, title, vocab_id=None, REQUEST=None):


@implementer(IZCatalog)
class ZCatalog(Folder, Persistent, Implicit):
class ZCatalog(Folder):
"""ZCatalog object
A ZCatalog contains arbirary index like references to Zope
Expand Down
2 changes: 1 addition & 1 deletion src/Products/ZCatalog/ZCatalogIndexes.py
Expand Up @@ -33,7 +33,7 @@
_marker = []


class ZCatalogIndexes(IFAwareObjectManager, Folder, Persistent, Implicit):
class ZCatalogIndexes(IFAwareObjectManager, Folder):
"""A mapping object, responding to getattr requests by looking up
the requested indexes in an object manager."""

Expand Down

0 comments on commit 9c258a0

Please sign in to comment.