[Zope-Checkins] CVS: Zope3/lib/python/Zope/ComponentArchitecture - IFactory.py:1.1.2.6
Gary Poster
garyposter@earthlink.net
Tue, 21 May 2002 17:25:48 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/ComponentArchitecture
In directory cvs.zope.org:/tmp/cvs-serv25139/lib/python/Zope/ComponentArchitecture
Modified Files:
Tag: Zope-3x-branch
IFactory.py
Log Message:
Fixed Role.py to fully implement IFactory. CHanged IFactory to import Interface, not Base. Made no change as far as I know to Verify; if I did make one I will probably try to undo it in an immediately following commit.
z3.py runs again.
=== Zope3/lib/python/Zope/ComponentArchitecture/IFactory.py 1.1.2.5 => 1.1.2.6 ===
-from Interface import Base
+from Interface import Interface
-class IFactory(Base):
+class IFactory(Interface):
def __call__():
"""Return an instance of the objects we're a factory for."""