[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/Security - IAttributeRolePermissionManageable.py:1.1.2.2

Jim Fulton jim@zope.com
Fri, 28 Dec 2001 11:20:39 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/Security
In directory cvs.zope.org:/tmp/cvs-serv20302

Modified Files:
      Tag: Zope-3x-branch
	IAttributeRolePermissionManageable.py 
Log Message:
Changed to extend IPersistence, since adapters will need that.


=== Zope3/lib/python/Zope/App/Security/IAttributeRolePermissionManageable.py 1.1.2.1 => 1.1.2.2 ===
 """
 
-from Interface import Interface
+from Persistence.IPersistent import IPersistent
 
-class IAttributeRolePermissionManageable(Interface):
+class IAttributeRolePermissionManageable(IPersistent):
 
     """The object reserves the attribute __role_permissions__ for use
     by implementations of IRolePermissionManager"""