Skip to content

Commit

Permalink
took out self arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
Michel Pelletier committed Dec 1, 2000
1 parent 3091b34 commit 40614ad
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions help/PythonScript.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class PythonScript:
"""

def ZPythonScriptHTML_editAction(self, REQUEST, title, params, body):
def ZPythonScriptHTML_editAction(REQUEST, title, params, body):
"""
Change the script's main parameters. This method accepts the
Expand All @@ -174,7 +174,7 @@ def ZPythonScriptHTML_editAction(self, REQUEST, title, params, body):
"""

def ZPythonScript_setTitle(self, title):
def ZPythonScript_setTitle(title):
"""
Change the script's title. This method accepts one argument,
Expand All @@ -183,7 +183,7 @@ def ZPythonScript_setTitle(self, title):
"""

def ZPythonScript_edit(self, params, body):
def ZPythonScript_edit(params, body):
"""
Change the parameters and body of the script. This method accepts
Expand All @@ -200,7 +200,7 @@ def ZPythonScript_edit(self, params, body):
"""

def ZPythonScriptHTML_upload(self, REQUEST, file=''):
def ZPythonScriptHTML_upload(REQUEST, file=''):
"""
Replace the body of the script with the text in file.
Expand Down Expand Up @@ -231,7 +231,7 @@ def params(self):
"""

def document_src(self, REQUEST=None, RESPONSE=None):
def document_src(REQUEST=None, RESPONSE=None):
"""
Return unprocessed document source.
Expand Down

0 comments on commit 40614ad

Please sign in to comment.