[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Services/AuthenticationService - AuthenticationService.py:1.3
Jeremy Hylton
jeremy@zope.com
Mon, 22 Jul 2002 16:15:30 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Services/AuthenticationService
In directory cvs.zope.org:/tmp/cvs-serv31710/Zope/App/OFS/Services/AuthenticationService
Modified Files:
AuthenticationService.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/OFS/Services/AuthenticationService/AuthenticationService.py 1.2 => 1.3 ===
"""
from types import TupleType
-from Persistence import PersistentMapping
+from Persistence.PersistentMapping import PersistentMapping
from Zope.Exceptions import NotFoundError
from Zope.ComponentArchitecture import getAdapter, queryAdapter