[Python-checkins] python/dist/src/Lib SimpleXMLRPCServer.py, 1.8, 1.9

bcannon at users.sourceforge.net bcannon at users.sourceforge.net
Mon Oct 4 01:21:47 CEST 2004


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1716/Lib

Modified Files:
	SimpleXMLRPCServer.py 
Log Message:
Fix a small typo in the docstring for system_methodSignature .

Closes bug #1038935.  Thanks Malte Helmert for spotting it.


Index: SimpleXMLRPCServer.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/SimpleXMLRPCServer.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- SimpleXMLRPCServer.py	2 Nov 2003 09:47:05 -0000	1.8
+++ SimpleXMLRPCServer.py	3 Oct 2004 23:21:44 -0000	1.9
@@ -266,7 +266,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