[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/Security/Grants - PersistentLocalSecurityMap.py:1.2

Jeremy Hylton jeremy@zope.com
Mon, 22 Jul 2002 16:15:30 -0400


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

Modified Files:
	PersistentLocalSecurityMap.py 
Log Message:
Limit the trickery in Persistence/__init__.py.

User code should get PersistentMapping and PersistentList from their
modules explicitly.  Fixup several Zope modules that use
PersistentMapping.




=== Zope3/lib/python/Zope/App/Security/Grants/PersistentLocalSecurityMap.py 1.1 => 1.2 ===
 ##############################################################################
 """ Generic two-dimensional array type """
 
-from Persistence import Persistent, PersistentMapping
+from Persistence import Persistent
+from Persistence.PersistentMapping import PersistentMapping
 from Zope.App.Security.Grants.ILocalSecurityMap import ILocalSecurityMap
 from Zope.App.Security.Grants.LocalSecurityMap import LocalSecurityMap