[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/services - service.py:1.1.2.3
Jim Fulton
jim@zope.com
Mon, 23 Dec 2002 18:22:50 -0500
Update of /cvs-repository/Zope3/src/zope/app/interfaces/services
In directory cvs.zope.org:/tmp/cvs-serv30919/zope/app/interfaces/services
Modified Files:
Tag: NameGeddon-branch
service.py
Log Message:
Changes needed to get placefulsetup working again (I think) and to get zope.app.traversing almost passing
=== Zope3/src/zope/app/interfaces/services/service.py 1.1.2.2 => 1.1.2.3 ===
--- Zope3/src/zope/app/interfaces/services/service.py:1.1.2.2 Mon Dec 23 15:49:38 2002
+++ Zope3/src/zope/app/interfaces/services/service.py Mon Dec 23 18:22:19 2002
@@ -15,7 +15,16 @@
$Id$
"""
-from zope.interface import Interface
+
+from zope.interface import Interface, Attribute
+
+from zope.component.interfaces import IServiceService
+
+from zope.app.interfaces.services.configuration \
+ import INamedComponentConfiguration
+
+from zope.app.interfaces.services.configuration \
+ import INameComponentConfigurable
class IComponentManager(Interface):
@@ -35,14 +44,6 @@
"""
-
-"""
-
-$Id$
-"""
-
-from zope.interface import Interface
-
class IReadServiceManagerContainer(Interface):
def getServiceManager():
@@ -74,15 +75,6 @@
pass
-
-"""
-
-Revision information:
-$Id$
-"""
-
-from zope.interface import Interface
-
class IBindingAware(Interface):
def bound(name):
@@ -99,15 +91,6 @@
this object from performing the named service.
"""
-
-"""
-
-$Id$
-"""
-from zope.component.interfaces import IServiceService
-from zope.app.interfaces.services.configuration \
- import INameComponentConfigurable
-
from zope.interface import Attribute
class IServiceManager(IServiceService, IComponentManager,
@@ -123,13 +106,6 @@
Packages = Attribute("Package container")
-
-"""
-$Id$
-"""
-
-from zope.interface import Interface
-
class INameResolver(Interface):
"""Objects that can resolve dotted names to objects
"""
@@ -141,17 +117,6 @@
may be repeated.
"""
-__doc__ = INameResolver.__doc__ + __doc__
-
-
-"""
-$Id$
-"""
-
-from zope.interface import Attribute
-from zope.app.interfaces.services.configuration \
- import INamedComponentConfiguration
-
class IServiceConfiguration(INamedComponentConfiguration):
"""Service Configuration
@@ -161,6 +126,3 @@
The name of a service configuration is used to determine the service
type.
"""
-
-
-__doc__ = IServiceConfiguration.__doc__ + __doc__