diff options
author | Brett Cannon <bcannon@gmail.com> | 2004-10-03 23:21:44 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2004-10-03 23:21:44 (GMT) |
commit | b9b5f160ab7c17469c5ff297292275253e4f7570 (patch) | |
tree | 47a84c55d4f3695a4a07ad3af13ad9ab360d15c1 /Lib | |
parent | e7d4066cdf1868a31f3ad5c6a271df045abe8255 (diff) | |
download | cpython-b9b5f160ab7c17469c5ff297292275253e4f7570.zip cpython-b9b5f160ab7c17469c5ff297292275253e4f7570.tar.gz cpython-b9b5f160ab7c17469c5ff297292275253e4f7570.tar.bz2 |
Fix a small typo in the docstring for system_methodSignature .
Closes bug #1038935. Thanks Malte Helmert for spotting it.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/SimpleXMLRPCServer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/SimpleXMLRPCServer.py b/Lib/SimpleXMLRPCServer.py index fdde60c..68a20ef 100644 --- a/Lib/SimpleXMLRPCServer.py +++ b/Lib/SimpleXMLRPCServer.py @@ -266,7 +266,7 @@ class SimpleXMLRPCDispatcher: def system_methodSignature(self, method_name): """system.methodSignature('add') => [double, int, int] - Returns a list describing the signiture of the method. In the + Returns a list describing the signature of the method. In the above example, the add method takes two integers as arguments and returns a double result. |