[Zope-Checkins] CVS: Zope/lib/python/Interface/tests - testInterface.py:1.4
Jim Fulton
jim@zope.com
Mon, 10 Jun 2002 16:00:44 -0400
Update of /cvs-repository/Zope/lib/python/Interface/tests
In directory cvs.zope.org:/tmp/cvs-serv13934/lib/python/Interface/tests
Modified Files:
testInterface.py
Log Message:
Fixed bug in Interface names and namesAndDescription methods that
caused attributes to be missed with more than one level of inheritence.
=== Zope/lib/python/Interface/tests/testInterface.py 1.3 => 1.4 ===
def f12(): pass
-class _I2(_I1):
+class __I1(_I1): pass
+class ___I1(__I1): pass
+
+class _I2(___I1):
def f21(): pass
def f22(): pass
def f23(): pass