[Zope-Checkins] CVS: Zope3/lib/python/Zope/Event - ISubscriber.py:1.1.2.2
Steve Alexander
steve@cat-box.net
Fri, 22 Feb 2002 11:10:23 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/Event
In directory cvs.zope.org:/tmp/cvs-serv2176
Modified Files:
Tag: Zope-3x-branch
ISubscriber.py
Log Message:
Corrected significant typos. :-)
=== Zope3/lib/python/Zope/Event/ISubscriber.py 1.1.2.1 => 1.1.2.2 ===
"""
-from Interfaces import Interfaces
+from Interfaces import Interface
-class ISubscriber:
+class ISubscriber(Interface):
"""Interface for objects which receiving event notifications."""
def notify(event):