[Zope3-checkins] CVS: Zope3/src/zope/app/event - globalservice.py:1.4.4.2
Guido van Rossum
guido@python.org
Mon, 3 Mar 2003 13:28:59 -0500
Update of /cvs-repository/Zope3/src/zope/app/event
In directory cvs.zope.org:/tmp/cvs-serv22756/src/zope/app/event
Modified Files:
Tag: use-config-branch
globalservice.py
Log Message:
Get rid of IService. Instead, add ILocalService, which only applies
(as the name implies) to local services. Fewer files touched.
=== Zope3/src/zope/app/event/globalservice.py 1.4.4.1 => 1.4.4.2 ===
--- Zope3/src/zope/app/event/globalservice.py:1.4.4.1 Wed Feb 26 16:19:30 2003
+++ Zope3/src/zope/app/event/globalservice.py Mon Mar 3 13:28:24 2003
@@ -26,7 +26,6 @@
from zope.app.interfaces.event import IEvent, ISubscriber, ISubscribingAware
from zope.app.interfaces.event import IGlobalSubscribable, IPublisher
-from zope.app.interfaces.services.interfaces import ISimpleService
from zope.configuration.action import Action
@@ -247,7 +246,7 @@
class GlobalEventPublisher(GlobalSubscribable):
- __implements__ = IGlobalSubscribable, IPublisher, ISimpleService
+ __implements__ = IGlobalSubscribable, IPublisher
publish = globalNotifyOrPublish