https://github.com/python/cpython/commit/887ee39462743704cab53e721ad91d226d071b5a commit: 887ee39462743704cab53e721ad91d226d071b5a branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: picnixz <[email protected]> date: 2025-10-24T20:53:38Z summary:
[3.13] gh-140463: Fix typo in xmlrpc.client documentation (GH-140552) (#140567) gh-140463: Fix typo in xmlrpc.client documentation (GH-140552) Fix typo in xmlrpc.client documentation (cherry picked from commit 44b6eead21080e1abb3ca9ee2e1c7bc8e7a3c3a6) Co-authored-by: Miša Jakovljević <[email protected]> files: M Doc/library/xmlrpc.client.rst diff --git a/Doc/library/xmlrpc.client.rst b/Doc/library/xmlrpc.client.rst index 547cb50be78a78..a21c7d3e4e3ad5 100644 --- a/Doc/library/xmlrpc.client.rst +++ b/Doc/library/xmlrpc.client.rst @@ -524,7 +524,7 @@ Convenience Functions .. function:: dumps(params, methodname=None, methodresponse=None, encoding=None, allow_none=False) - Convert *params* into an XML-RPC request. or into a response if *methodresponse* + Convert *params* into an XML-RPC request, or into a response if *methodresponse* is true. *params* can be either a tuple of arguments or an instance of the :exc:`Fault` exception class. If *methodresponse* is true, only a single value can be returned, meaning that *params* must be of length 1. *encoding*, if _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
