[Zope3-checkins] CVS: Zope3/src/zope/app/component -
globalinterfaceservice.py:1.21
Stephan Richter
srichter at cosmos.phy.tufts.edu
Wed Mar 3 12:07:25 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/component
In directory cvs.zope.org:/tmp/cvs-serv17109/src/zope/app/component
Modified Files:
globalinterfaceservice.py
Log Message:
Cleanup.
=== Zope3/src/zope/app/component/globalinterfaceservice.py 1.20 => 1.21 ===
--- Zope3/src/zope/app/component/globalinterfaceservice.py:1.20 Wed Feb 25 18:02:22 2004
+++ Zope3/src/zope/app/component/globalinterfaceservice.py Wed Mar 3 12:07:23 2004
@@ -11,11 +11,10 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""
+"""Global Interface Service
+
$Id$
"""
-__metaclass__ = type
-
from zope.component.exceptions import ComponentLookupError
from zope.app.interfaces.component import IGlobalInterfaceService
from zope.interface import implements, providedBy, implementedBy
@@ -23,7 +22,7 @@
from zope.component.utility import utilityService
from types import ClassType
-class InterfaceService:
+class InterfaceService(object):
implements(IGlobalInterfaceService)
def __init__(self, data=None):
@@ -105,7 +104,6 @@
self.__data[id]=(interface, self._getAllDocs(interface))
_clear = __init__
-
interfaceService = InterfaceService()
More information about the Zope3-Checkins
mailing list