[Zope3-checkins] CVS: Zope3/lib/python/Zope/ContextWrapper - IWrapper.py:1.5

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


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

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


=== Zope3/lib/python/Zope/ContextWrapper/IWrapper.py 1.4 => 1.5 ===
--- Zope3/lib/python/Zope/ContextWrapper/IWrapper.py:1.4	Mon Jul  8 13:02:52 2002
+++ Zope3/lib/python/Zope/ContextWrapper/IWrapper.py	Tue Aug 13 13:57:05 2002
@@ -13,7 +13,7 @@
 ##############################################################################
 import Interface
 
-class IWrapperFuncs(Interface.Base):
+class IWrapperFuncs(Interface.Interface):
     """ Interface implemented by callables in 'wrapper' module """
     def Wrapper(object, context=None, **data):
         """
@@ -72,6 +72,6 @@
         a wrapper object.
         """
     
-class IWrapper(Interface.Base):
+class IWrapper(Interface.Interface):
     def __getstate__():
         """ Raises AttributeError if called (to prevent pickling) """