[Zope3-checkins] CVS: Zope3/src/zope/app/tests - test_attributeannotations.py:1.4

Steve Alexander steve@cat-box.net
Wed, 4 Jun 2003 07:14:20 -0400


Update of /cvs-repository/Zope3/src/zope/app/tests
In directory cvs.zope.org:/tmp/cvs-serv14850/src/zope/app/tests

Modified Files:
	test_attributeannotations.py 
Log Message:
new style implements()


=== Zope3/src/zope/app/tests/test_attributeannotations.py 1.3 => 1.4 ===
--- Zope3/src/zope/app/tests/test_attributeannotations.py:1.3	Thu May  1 15:35:37 2003
+++ Zope3/src/zope/app/tests/test_attributeannotations.py	Wed Jun  4 07:13:49 2003
@@ -22,9 +22,10 @@
 from zope.app.tests.annotations import Annotations
 from zope.app.attributeannotations import AttributeAnnotations
 from zope.app.interfaces.annotation import IAttributeAnnotatable
+from zope.interface import implements
 
 class Dummy:
-    __implements__ = IAttributeAnnotatable
+    implements(IAttributeAnnotatable)
 
 class Test(CleanUp, Annotations, TestCase):