[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Container - IAddNotifiable.py:1.3 IDeleteNotifiable.py:1.3
Jeremy Hylton
jeremy@zope.com
Fri, 20 Dec 2002 17:24:59 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Container
In directory cvs.zope.org:/tmp/cvs-serv1512/App/OFS/Container
Modified Files:
IAddNotifiable.py IDeleteNotifiable.py
Log Message:
Fix files with missing newline at end or other bogus whitespace issues.
Fix some typos and other stuff, too.
=== Zope3/lib/python/Zope/App/OFS/Container/IAddNotifiable.py 1.2 => 1.3 ===
--- Zope3/lib/python/Zope/App/OFS/Container/IAddNotifiable.py:1.2 Mon Nov 18 18:52:58 2002
+++ Zope3/lib/python/Zope/App/OFS/Container/IAddNotifiable.py Fri Dec 20 17:24:29 2002
@@ -20,9 +20,7 @@
from Interface import Interface
class IAddNotifiable(Interface):
- """The Base interface for Manageing Objects
- """
+ """The Base interface for Managing Objects."""
def manage_afterAdd(object, container):
- """Hook method will call after an object is added to container
- """
\ No newline at end of file
+ """Hook method will call after an object is added to container."""
=== Zope3/lib/python/Zope/App/OFS/Container/IDeleteNotifiable.py 1.2 => 1.3 ===
--- Zope3/lib/python/Zope/App/OFS/Container/IDeleteNotifiable.py:1.2 Mon Nov 18 18:52:58 2002
+++ Zope3/lib/python/Zope/App/OFS/Container/IDeleteNotifiable.py Fri Dec 20 17:24:29 2002
@@ -20,9 +20,7 @@
from Interface import Interface
class IDeleteNotifiable(Interface):
- """The Base interface for Manageing Objects
- """
+ """The Base interface for Managing Objects."""
def manage_beforeDelete(object, container):
- """Hook method will call before an object is removed from the container
- """
\ No newline at end of file
+ """Hook method will call before object is removed from container."""