[Zope3-checkins] CVS: Zope3/src/zope/app/component - globalinterfaceservice.py:1.4
Steve Alexander
steve@cat-box.net
Fri, 3 Jan 2003 11:03:35 -0500
Update of /cvs-repository/Zope3/src/zope/app/component
In directory cvs.zope.org:/tmp/cvs-serv4929/src/zope/app/component
Modified Files:
globalinterfaceservice.py
Log Message:
moved import to resolve circular import.
Why is there an interface in here, anyway?
=== Zope3/src/zope/app/component/globalinterfaceservice.py 1.3 => 1.4 ===
--- Zope3/src/zope/app/component/globalinterfaceservice.py:1.3 Fri Jan 3 10:53:11 2003
+++ Zope3/src/zope/app/component/globalinterfaceservice.py Fri Jan 3 11:03:33 2003
@@ -16,8 +16,6 @@
"""
from zope.interface import Interface
-from zope.app.interfaces.component.globalinterfaceservice \
- import IGlobalInterfaceService
from zope.component.exceptions import ComponentLookupError
class IInterfaceService(Interface):
@@ -54,6 +52,8 @@
"""
+from zope.app.interfaces.component.globalinterfaceservice \
+ import IGlobalInterfaceService
class InterfaceService:
__implements__ = IGlobalInterfaceService