[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Content/Folder - Folder.py:1.5

Jim Fulton jim@zope.com
Fri, 4 Oct 2002 16:03:37 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Content/Folder
In directory cvs.zope.org:/tmp/cvs-serv7753/lib/python/Zope/App/OFS/Content/Folder

Modified Files:
	Folder.py 
Log Message:
Moved the implementation assertion for IAttributeAnnotatable from the
class to the config file. This is more of a configuration assertion
than a design assertion, although the implementation must support
extra attributes.


=== Zope3/lib/python/Zope/App/OFS/Content/Folder/Folder.py 1.4 => 1.5 ===
--- Zope3/lib/python/Zope/App/OFS/Content/Folder/Folder.py:1.4	Thu Aug  1 14:42:09 2002
+++ Zope3/lib/python/Zope/App/OFS/Content/Folder/Folder.py	Fri Oct  4 16:03:37 2002
@@ -31,7 +31,7 @@
 class Folder(Persistence.Persistent, ServiceManagerContainer):
     """The standard Zope Folder implementation."""
 
-    __implements__ = IFolder, IAnnotatable
+    __implements__ = IFolder
     
     def __init__(self):
         self.data = OOBTree()