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

Stephan Richter srichter@cbu.edu
Tue, 21 May 2002 16:31:40 -0400


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

Modified Files:
      Tag: Zope-3x-branch
	IFactory.py 
Log Message:
- Fixed a little bug in Interface code, where they verify method would stop checking when finding an attribute. We simply continue now.

- Updated a doc strong of assertTypeImplements, whose doc string was totally off.

- Our little change caused a test in to fail, so we fixed it.


=== Zope3/lib/python/Zope/ComponentArchitecture/IFactory.py 1.1.2.4 => 1.1.2.5 ===
 
 class IFactory(Base):
+
     def __call__():
         """Return an instance of the objects we're a factory for."""
+
+
     def getInterfaces():
         """Return the interface(s) that objects created by this factory
         will implement."""