Skip to content

Commit

Permalink
- Removed spurious 'self' argument from scarecrow interfaces; suppre…
Browse files Browse the repository at this point in the history
…ssed

    'self' in interface methods created from actual method objects.
  • Loading branch information
tseaver committed Mar 13, 2002
1 parent 10c20bb commit 965a725
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions CatalogAwarenessInterface.py
Expand Up @@ -5,7 +5,7 @@ class CatalogAware:
Description of the Item interface
"""

def creator(self):
def creator():
"""
Return a sequence of user names who have the local Owner role
Expand All @@ -14,31 +14,31 @@ def creator(self):
"""

def summary(self, num=200):
def summary(num=200):
"""
Returns the summary of the text contents of the object (if
text content is present). Summary length is 'num'.
"""

def index_object(self):
def index_object():
"""
This object will try and catalog itself when this method is
called.
"""

def unindex_object(self):
def unindex_object():
"""
This object will try and uncatalog itself when this method is
called.
"""

def reindex_all(self, obj=None):
def reindex_all(obj=None):
"""
This method will cause this object to get reindexed. If this
Expand Down

0 comments on commit 965a725

Please sign in to comment.