Skip to content

Commit

Permalink
Minor typo fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
latteier committed Mar 29, 2001
1 parent 90bab21 commit 355998a
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions help/ExternalMethod.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@

def manage_addExternalMethod(self, id, title, module, function):
"""
Add an external method to an ObjectManager.
Add an external method to an
'ObjectManager'.
In addition to the standard object-creation arguments,
'id' and title, the following arguments are defined:
Expand All @@ -114,8 +114,8 @@ def manage_addExternalMethod(self, id, title, module, function):

class ExternalMethod:
"""
Web-callable functions that encapsulate external python functions.
Web-callable functions that encapsulate external
Python functions.
The function is defined in an external file. This file is treated
like a module, but is not a module. It is not imported directly,
Expand All @@ -135,7 +135,8 @@ class ExternalMethod:

def manage_edit(self, title, module, function, REQUEST=None):
"""
Change the external method
Change the
External Method.
See the description of manage_addExternalMethod for a
description of the arguments 'module' and 'function'.
Expand All @@ -150,8 +151,8 @@ def manage_edit(self, title, module, function, REQUEST=None):
def __call__(self, *args, **kw):

"""
Call an ExternalMethod
Call the
External Method.
Calling an External Method is roughly equivalent to calling
the original actual function from Python. Positional and
Expand Down

0 comments on commit 355998a

Please sign in to comment.