[Zope-Checkins] CVS: Zope/lib/python/Products/ZCatalog - CatalogAwarenessInterface.py:1.3
Tres Seaver
tseaver@zope.com
Wed, 13 Mar 2002 11:39:05 -0500
Update of /cvs-repository/Zope/lib/python/Products/ZCatalog
In directory cvs.zope.org:/tmp/cvs-serv1764/lib/python/Products/ZCatalog
Modified Files:
CatalogAwarenessInterface.py
Log Message:
- Removed spurious 'self' argument from scarecrow interfaces; suppressed
'self' in interface methods created from actual method objects.
=== Zope/lib/python/Products/ZCatalog/CatalogAwarenessInterface.py 1.2 => 1.3 ===
"""
- def creator(self):
+ def creator():
"""
Return a sequence of user names who have the local Owner role
@@ -14,7 +14,7 @@
"""
- def summary(self, num=200):
+ def summary(num=200):
"""
Returns the summary of the text contents of the object (if
@@ -22,7 +22,7 @@
"""
- def index_object(self):
+ def index_object():
"""
This object will try and catalog itself when this method is
@@ -30,7 +30,7 @@
"""
- def unindex_object(self):
+ def unindex_object():
"""
This object will try and uncatalog itself when this method is
@@ -38,7 +38,7 @@
"""
- def reindex_all(self, obj=None):
+ def reindex_all(obj=None):
"""
This method will cause this object to get reindexed. If this