[Zope3-checkins] CVS: Zope3/lib/python/Zope/Event - ISubscriber.py:1.3

Jim Fulton jim@zope.com
Tue, 3 Sep 2002 16:14:00 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/Event
In directory cvs.zope.org:/tmp/cvs-serv14210

Modified Files:
	ISubscriber.py 
Log Message:
Fixed a miss-formatted doc string.


=== Zope3/lib/python/Zope/Event/ISubscriber.py 1.2 => 1.3 ===
--- Zope3/lib/python/Zope/Event/ISubscriber.py:1.2	Mon Jun 10 19:29:25 2002
+++ Zope3/lib/python/Zope/Event/ISubscriber.py	Tue Sep  3 16:14:00 2002
@@ -34,9 +34,11 @@
     """Interface for objects that handle subscriptions for another object"""
     
     def __eq__(other):
-        """this standard python hook allows indirect subscribers to
-        participate in subscribable introspection and unsubscription
-        without being the actual original subscriber object"""
+        """Compare two indirect subscribers
+
+        Two indirect subscribers are the same if they reference the
+        same object.
+        """