This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Typo in library on xmlrpc
Type: Stage:
Components: Documentation Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: JonathansCorner.com, georg.brandl
Priority: normal Keywords:

Created on 2009-05-04 19:30 by JonathansCorner.com, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg87156 - (view) Author: Jonathan Hayward (JonathansCorner.com) Date: 2009-05-04 19:30
On http://docs.python.org/library/xmlrpclib.html , 21.23.1, at the end
of ServerProxy.system.methodSignature(name):

If no signature is defined for the method, a non-array value is
returned. In Python this means that the type of the returned value will
be something other that list.

I assume this should be:

If no signature is defined for the method, a non-array value is
returned. In Python this means that the type of the returned value will
be something other than list.

reading 'thaN' for 'thaT' in the second-to-last word?

Jonathan
http://JonathansCorner.com
msg87168 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-05-04 20:45
Fixed in r72290.
History
Date User Action Args
2022-04-11 14:56:48adminsetgithub: 50177
2009-05-04 20:45:23georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg87168
2009-05-04 19:30:48JonathansCorner.comcreate