[Zope3-checkins] CVS: Zope3/src/zope/app/component - globalinterfaceservice.py:1.3
Steve Alexander
steve@cat-box.net
Fri, 3 Jan 2003 10:53:13 -0500
Update of /cvs-repository/Zope3/src/zope/app/component
In directory cvs.zope.org:/tmp/cvs-serv3469/src/zope/app/component
Modified Files:
globalinterfaceservice.py
Log Message:
code cleanup.
=== Zope3/src/zope/app/component/globalinterfaceservice.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/component/globalinterfaceservice.py:1.2 Wed Dec 25 09:12:45 2002
+++ Zope3/src/zope/app/component/globalinterfaceservice.py Fri Jan 3 10:53:11 2003
@@ -16,6 +16,9 @@
"""
from zope.interface import Interface
+from zope.app.interfaces.component.globalinterfaceservice \
+ import IGlobalInterfaceService
+from zope.component.exceptions import ComponentLookupError
class IInterfaceService(Interface):
"""Service that keeps track of used interfaces
@@ -51,15 +54,6 @@
"""
-
-__doc__ = IInterfaceService.__doc__ + __doc__
-
-
-"""
-$Id$
-"""
-from zope.app.interfaces.component.globalinterfaceservice import IGlobalInterfaceService
-from zope.component.exceptions import ComponentLookupError
class InterfaceService:
__implements__ = IGlobalInterfaceService