[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/observable/interfaces.py Updated doc string.

Jim Fulton jim at zope.com
Wed May 26 05:32:13 EDT 2004


Log message for revision 24984:
Updated doc string.



-=-
Modified: Zope3/trunk/src/zope/app/observable/interfaces.py
===================================================================
--- Zope3/trunk/src/zope/app/observable/interfaces.py	2004-05-26 09:31:26 UTC (rev 24983)
+++ Zope3/trunk/src/zope/app/observable/interfaces.py	2004-05-26 09:32:12 UTC (rev 24984)
@@ -21,7 +21,7 @@
 class IObservable(Interface):
 
     def notify(event):
-        """Notify the ISubscriber subscribers"""
+        """Call registered event handlers"""
 
     def handle(interfaces, handler):
         """Register a handler for some interfaces
@@ -29,6 +29,11 @@
         The handler will be called with object's implementing the
         interface.  Typically, one of the objects will be an
         event. Other objects may be associated objects.
+
+        Note that, at this time, only handlers taking a single
+        argument, an event, will be called, because there isn't
+        currently an api for accessing more complex subscribers. There
+        will be in the future though.
         
         """
 




More information about the Zope3-Checkins mailing list