[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Services/LocalEventService - LocalEventService.py:1.3
Jeremy Hylton
jeremy@zope.com
Thu, 18 Jul 2002 12:03:17 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Services/LocalEventService
In directory cvs.zope.org:/tmp/cvs-serv19681/Zope/App/OFS/Services/LocalEventService
Modified Files:
LocalEventService.py
Log Message:
Add imports for undefined names.
Re-order imports.
=== Zope3/lib/python/Zope/App/OFS/Services/LocalEventService/LocalEventService.py 1.2 => 1.3 ===
$Id$
"""
+from Zope.Event.GlobalEventService import eventService
+from Zope.Event.IEvent import IEvent
from Zope.Event.IEventService import IEventService
-from Zope.Event.ISubscriptionAware import ISubscriptionAware
from Zope.Event.ISubscriber import ISubscriber
-from LocalServiceSubscribable import LocalServiceSubscribable
-from Zope.ComponentArchitecture import getNextService, getAdapter, getService
+from Zope.Event.ISubscriptionAware import ISubscriptionAware
+
from Zope.App.OFS.Services.ServiceManager.IBindingAware import IBindingAware
+from Zope.App.Traversing.ITraverser import ITraverser
+from Zope.ComponentArchitecture import getNextService, getAdapter, getService
from Zope.ContextWrapper import ContextMethod
-from Zope.Proxy.ProxyIntrospection import removeAllProxies
+from Zope.Exceptions import NotFoundError
from Zope.Proxy.ContextWrapper import ContextWrapper
+from Zope.Proxy.ProxyIntrospection import removeAllProxies
+
from PathSubscriber import PathSubscriber
-from Zope.App.Traversing.ITraverser import ITraverser
from LocalSubscriptionAware import LocalSubscriptionAware
+from LocalServiceSubscribable import LocalServiceSubscribable
+
from Interface.Attribute import Attribute
-from Zope.Event.GlobalEventService import eventService
-from Zope.Event.IEvent import IEvent
class ILocalEventService(
IEventService, ISubscriber, IBindingAware, ISubscriptionAware):