[Zope3-checkins] CVS: Zope3/lib/python/Zope/Configuration/tests - Directives.py:1.4.4.2

R. David Murray bitz@bitdance.com
Tue, 22 Oct 2002 08:19:16 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/Configuration/tests
In directory cvs.zope.org:/tmp/cvs-serv10611/lib/python/Zope/Configuration/tests

Modified Files:
      Tag: rdmurray-metameta-branch
	Directives.py 
Log Message:
It doesn't seem right to have the __class_implements__ and not have the
corresponding __implelents__ for ISubdirectiveHandler, so I've added those
as well.


=== Zope3/lib/python/Zope/Configuration/tests/Directives.py 1.4.4.1 => 1.4.4.2 ===
--- Zope3/lib/python/Zope/Configuration/tests/Directives.py:1.4.4.1	Mon Oct 21 19:15:52 2002
+++ Zope3/lib/python/Zope/Configuration/tests/Directives.py	Tue Oct 22 08:19:16 2002
@@ -18,12 +18,14 @@
 """
 
 from Zope.Configuration.INonEmptyDirective import INonEmptyDirective
+from Zope.Configuration.ISubdirectiveHandler import ISubdirectiveHandler
 
 protections=[]
 
 class protectClass:
 
     __class_implements__ = INonEmptyDirective
+    __implements__ = ISubdirectiveHandler
 
     def __init__(self, _context, name, permission=None, names=None):
         self._name=name