[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS - IContainer.py:1.1.2.6
Jim Fulton
jim@zope.com
Mon, 4 Mar 2002 11:54:09 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS
In directory cvs.zope.org:/tmp/cvs-serv14453
Modified Files:
Tag: Zope-3x-branch
IContainer.py
Log Message:
Removed extra self arguments from IWriteContainer methods.
=== Zope3/lib/python/Zope/App/OFS/IContainer.py 1.1.2.5 => 1.1.2.6 ===
"""An interface for the write aspects of a container."""
- def setObject(self, name, object):
+ def setObject(name, object):
"""Add the given object to the container under the given name."""
- def delObject(self, name):
+ def delObject(name):
"""Delete the named object from the container. Raises a KeyError
if the object is not found."""