[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/ZCTextIndex/I
Import Interface directly rather than Base
Casey Duncan
casey at zope.com
Fri Jul 23 10:11:13 EDT 2004
Log message for revision 26702:
Import Interface directly rather than Base
Changed:
U Zope/trunk/lib/python/Products/ZCTextIndex/ILexicon.py
U Zope/trunk/lib/python/Products/ZCTextIndex/IPipelineElement.py
U Zope/trunk/lib/python/Products/ZCTextIndex/IPipelineElementFactory.py
U Zope/trunk/lib/python/Products/ZCTextIndex/ISplitter.py
-=-
Modified: Zope/trunk/lib/python/Products/ZCTextIndex/ILexicon.py
===================================================================
--- Zope/trunk/lib/python/Products/ZCTextIndex/ILexicon.py 2004-07-23 14:03:07 UTC (rev 26701)
+++ Zope/trunk/lib/python/Products/ZCTextIndex/ILexicon.py 2004-07-23 14:11:13 UTC (rev 26702)
@@ -12,7 +12,7 @@
#
##############################################################################
-from Interface import Base as Interface
+from Interface import Interface
class ILexicon(Interface):
"""Object responsible for converting text to word identifiers."""
Modified: Zope/trunk/lib/python/Products/ZCTextIndex/IPipelineElement.py
===================================================================
--- Zope/trunk/lib/python/Products/ZCTextIndex/IPipelineElement.py 2004-07-23 14:03:07 UTC (rev 26701)
+++ Zope/trunk/lib/python/Products/ZCTextIndex/IPipelineElement.py 2004-07-23 14:11:13 UTC (rev 26702)
@@ -12,7 +12,7 @@
#
##############################################################################
-from Interface import Base as Interface
+from Interface import Interface
class IPipelineElement(Interface):
Modified: Zope/trunk/lib/python/Products/ZCTextIndex/IPipelineElementFactory.py
===================================================================
--- Zope/trunk/lib/python/Products/ZCTextIndex/IPipelineElementFactory.py 2004-07-23 14:03:07 UTC (rev 26701)
+++ Zope/trunk/lib/python/Products/ZCTextIndex/IPipelineElementFactory.py 2004-07-23 14:11:13 UTC (rev 26702)
@@ -12,7 +12,7 @@
#
##############################################################################
-from Interface import Base as Interface
+from Interface import Interface
class IPipelineElementFactory(Interface):
"""Class for creating pipeline elements by name"""
Modified: Zope/trunk/lib/python/Products/ZCTextIndex/ISplitter.py
===================================================================
--- Zope/trunk/lib/python/Products/ZCTextIndex/ISplitter.py 2004-07-23 14:03:07 UTC (rev 26701)
+++ Zope/trunk/lib/python/Products/ZCTextIndex/ISplitter.py 2004-07-23 14:11:13 UTC (rev 26702)
@@ -12,7 +12,7 @@
#
##############################################################################
-from Interface import Base as Interface
+from Interface import Interface
class ISplitter(Interface):
"""A splitter."""
More information about the Zope-Checkins
mailing list