[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/RoleService/Views/Browser - Contents.py:1.1.2.2

Jim Fulton jim@zope.com
Tue, 5 Mar 2002 16:43:20 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/RoleService/Views/Browser
In directory cvs.zope.org:/tmp/cvs-serv2132/Zope/App/OFS/RoleService/Views/Browser

Modified Files:
      Tag: Zope-3x-branch
	Contents.py 
Log Message:
Hold on to your butts!

Major refactoring of Interface package to clean up the interfaces and
module structure.

Note especially, to verify interface implementstions,
use verifyObject or verifyClass from the Interface.Verify module:

from Interface.Verify import verifyClass

verifyClass(ISomeInterface, SomeClass)



=== Zope3/lib/python/Zope/App/OFS/RoleService/Views/Browser/Contents.py 1.1.2.1 => 1.1.2.2 ===
 from Zope.App.OFS.Container.Views.Browser.Contents import Contents
 from Zope.App.OFS.Folder.FolderContents import FolderContents
-from Interface.Util import flattenInterfaces, objectImplements
+from Interface.Implements import flattenInterfaces, objectImplements
 
 class Contents(Contents):
     pass