[Zope3-checkins] CVS: Zope3/src/zope/app/component/tests - service.py:1.2.6.2

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


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

Modified Files:
      Tag: use-config-branch
	service.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/tests/service.py 1.2.6.1 => 1.2.6.2 ===
--- Zope3/src/zope/app/component/tests/service.py:1.2.6.1	Wed Feb 26 16:43:38 2003
+++ Zope3/src/zope/app/component/tests/service.py	Mon Mar  3 13:28:22 2003
@@ -18,7 +18,6 @@
 __metaclass__ = type # All classes are new style when run with Python 2.2+
 
 from zope.interface import Interface
-from zope.component.interfaces import IService
 
 class IFooService(Interface):
 
@@ -27,7 +26,7 @@
 
 class FooService:
 
-    __implements__ = IFooService, IService
+    __implements__ = IFooService
 
     def foo(self): return "foo here"
     def foobar(self): return "foobarred"