[Zope-Checkins] CVS: Zope3/lib/python/Zope/ComponentArchitecture - IFactory.py:1.1.2.2

Fred Drake Jr fdrake@acm.org
Tue, 20 Nov 2001 15:38:24 -0500


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

Modified Files:
      Tag: Zope-3x-branch
	IFactory.py 
Log Message:
IFactory should not specify the constructor signature -- that does not make
any sense.

=== Zope3/lib/python/Zope/ComponentArchitecture/IFactory.py 1.1.2.1 => 1.1.2.2 ===
 
 class IFactory(Base):
-    def __init__(klass):
-        """Initialize the factory with the class it creates instances of."""
-
     def __call__():
         """Return an instance of the objects we're a factory for."""