[Zope3-checkins] CVS: Zope3/src/zope/app/component - globalinterfaceservice.py:1.4.4.2

Guido van Rossum guido@python.org
Mon, 3 Mar 2003 13:28:55 -0500


Update of /cvs-repository/Zope3/src/zope/app/component
In directory cvs.zope.org:/tmp/cvs-serv22756/src/zope/app/component

Modified Files:
      Tag: use-config-branch
	globalinterfaceservice.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/component/globalinterfaceservice.py 1.4.4.1 => 1.4.4.2 ===
--- Zope3/src/zope/app/component/globalinterfaceservice.py:1.4.4.1	Wed Feb 26 16:19:30 2003
+++ Zope3/src/zope/app/component/globalinterfaceservice.py	Mon Mar  3 13:28:19 2003
@@ -17,7 +17,6 @@
 
 from zope.interface import Interface
 from zope.component.exceptions import ComponentLookupError
-from zope.component.interfaces import IService
 
 class IInterfaceService(Interface):
     """Service that keeps track of used interfaces
@@ -57,7 +56,7 @@
         import IGlobalInterfaceService
 
 class InterfaceService:
-    __implements__ = IGlobalInterfaceService, IService
+    __implements__ = IGlobalInterfaceService
 
     def __init__(self, data=None):
         if data is None: