Commit a6e256eb authored by Amos Latteier's avatar Amos Latteier

Minor typo fixes.

parent 1b1dab7e
...@@ -87,8 +87,8 @@ ...@@ -87,8 +87,8 @@
def manage_addExternalMethod(self, id, title, module, function): def manage_addExternalMethod(self, id, title, module, function):
""" """
Add an external method to an
Add an external method to an ObjectManager. 'ObjectManager'.
In addition to the standard object-creation arguments, In addition to the standard object-creation arguments,
'id' and title, the following arguments are defined: 'id' and title, the following arguments are defined:
...@@ -114,8 +114,8 @@ def manage_addExternalMethod(self, id, title, module, function): ...@@ -114,8 +114,8 @@ def manage_addExternalMethod(self, id, title, module, function):
class ExternalMethod: class ExternalMethod:
""" """
Web-callable functions that encapsulate external
Web-callable functions that encapsulate external python functions. Python functions.
The function is defined in an external file. This file is treated 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, like a module, but is not a module. It is not imported directly,
...@@ -135,7 +135,8 @@ class ExternalMethod: ...@@ -135,7 +135,8 @@ class ExternalMethod:
def manage_edit(self, title, module, function, REQUEST=None): 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 See the description of manage_addExternalMethod for a
description of the arguments 'module' and 'function'. description of the arguments 'module' and 'function'.
...@@ -150,8 +151,8 @@ class ExternalMethod: ...@@ -150,8 +151,8 @@ class ExternalMethod:
def __call__(self, *args, **kw): def __call__(self, *args, **kw):
""" """
Call the
Call an ExternalMethod External Method.
Calling an External Method is roughly equivalent to calling Calling an External Method is roughly equivalent to calling
the original actual function from Python. Positional and the original actual function from Python. Positional and
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment