[Python-checkins] python/dist/src/Lib SimpleXMLRPCServer.py, 1.7,
1.7.8.1
bcannon at users.sourceforge.net
bcannon at users.sourceforge.net
Mon Oct 4 01:23:02 CEST 2004
Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2227/Lib
Modified Files:
Tag: release23-maint
SimpleXMLRPCServer.py
Log Message:
Fix typo in docstring for system_methodSignature .
Backport of fix for bug #1038935 .
Index: SimpleXMLRPCServer.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/SimpleXMLRPCServer.py,v
retrieving revision 1.7
retrieving revision 1.7.8.1
diff -u -d -r1.7 -r1.7.8.1
--- SimpleXMLRPCServer.py 29 Jun 2003 04:19:37 -0000 1.7
+++ SimpleXMLRPCServer.py 3 Oct 2004 23:23:00 -0000 1.7.8.1
@@ -267,7 +267,7 @@
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.
More information about the Python-checkins
mailing list