[Zope3-checkins] CVS: Zope3/lib/python/Zope/Event - ObjectEvent.py:1.5
Florent Guillaume
fg@nuxeo.com
Sat, 5 Oct 2002 14:34:02 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/Event
In directory cvs.zope.org:/tmp/cvs-serv4881
Modified Files:
ObjectEvent.py
Log Message:
Fixed a few docstrings for ObjectEvents
=== Zope3/lib/python/Zope/Event/ObjectEvent.py 1.4 => 1.5 ===
--- Zope3/lib/python/Zope/Event/ObjectEvent.py:1.4 Fri Oct 4 14:02:15 2002
+++ Zope3/lib/python/Zope/Event/ObjectEvent.py Sat Oct 5 14:34:02 2002
@@ -24,7 +24,7 @@
from IObjectEvent import IObjectRemovedEvent, IObjectMovedEvent
class ObjectEvent:
- """An object has been added to a container."""
+ """Something has happened to an object"""
__implements__ = IObjectEvent
@@ -36,12 +36,12 @@
self.location = location
class ObjectAddedEvent(ObjectEvent):
- """An object has been added"""
+ """An object has been added to a container"""
__implements__ = IObjectAddedEvent
class ObjectCreatedEvent(ObjectEvent):
- """An object has been added"""
+ """An object has been created"""
__implements__ = IObjectCreatedEvent