[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/Traversing - ITraversable.py:1.3 ITraverser.py:1.4

Guido van Rossum guido@python.org
Tue, 13 Aug 2002 13:57:05 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/Traversing
In directory cvs.zope.org:/tmp/cvs-serv19582/lib/python/Zope/App/Traversing

Modified Files:
	ITraversable.py ITraverser.py 
Log Message:
Stamp out the last uses of Interface.Base.


=== Zope3/lib/python/Zope/App/Traversing/ITraversable.py 1.2 => 1.3 ===
--- Zope3/lib/python/Zope/App/Traversing/ITraversable.py:1.2	Mon Jun 10 19:28:17 2002
+++ Zope3/lib/python/Zope/App/Traversing/ITraversable.py	Tue Aug 13 13:57:05 2002
@@ -13,7 +13,7 @@
 ##############################################################################
 import Interface
 
-class ITraversable(Interface.Base):
+class ITraversable(Interface.Interface):
     """To traverse an object, this interface must be provided"""
 
     def traverse(name, parameters, pname, furtherPath):


=== Zope3/lib/python/Zope/App/Traversing/ITraverser.py 1.3 => 1.4 ===
--- Zope3/lib/python/Zope/App/Traversing/ITraverser.py:1.3	Thu Jul 11 14:21:34 2002
+++ Zope3/lib/python/Zope/App/Traversing/ITraverser.py	Tue Aug 13 13:57:05 2002
@@ -20,7 +20,7 @@
 
 _RAISE_KEYERROR=[]
 
-class ITraverser(Interface.Base):
+class ITraverser(Interface.Interface):
     """Provide traverse features"""
     
     def traverse(path, default=_RAISE_KEYERROR):