https://github.com/python/cpython/commit/57dcbfd7da8ba731f4b6ac4d5fd78e2a1605cb56 commit: 57dcbfd7da8ba731f4b6ac4d5fd78e2a1605cb56 branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: encukou <encu...@gmail.com> date: 2025-03-03T15:09:26+01:00 summary:
[3.13] Docs: Fix a misplaced statement in the document for `ServerProxy` (GH-130616) (GH-130640) Docs: Fix a misplaced statement in the document for `ServerProxy` (GH-130616) The sentence "If an HTTPS URL ..." explains what the parameter means, so moved it to the paragraph explaining what the other parameters mean. (cherry picked from commit b26286ca49d87ad8491e411f7b0283b0f15ad5be) Co-authored-by: Yuki Kobayashi <drsuaimqj...@gmail.com> files: M Doc/library/xmlrpc.client.rst diff --git a/Doc/library/xmlrpc.client.rst b/Doc/library/xmlrpc.client.rst index 971e65605841e7..654154cb43d6e5 100644 --- a/Doc/library/xmlrpc.client.rst +++ b/Doc/library/xmlrpc.client.rst @@ -61,6 +61,8 @@ between conformable Python objects and XML on the wire. The *headers* parameter is an optional sequence of HTTP headers to send with each request, expressed as a sequence of 2-tuples representing the header name and value. (e.g. ``[('Header-Name', 'value')]``). + If an HTTPS URL is provided, *context* may be :class:`ssl.SSLContext` + and configures the SSL settings of the underlying HTTPS connection. The obsolete *use_datetime* flag is similar to *use_builtin_types* but it applies only to date/time values. @@ -75,9 +77,7 @@ between conformable Python objects and XML on the wire. portion will be base64-encoded as an HTTP 'Authorization' header, and sent to the remote server as part of the connection process when invoking an XML-RPC method. You only need to use this if the remote server requires a Basic - Authentication user and password. If an HTTPS URL is provided, *context* may - be :class:`ssl.SSLContext` and configures the SSL settings of the underlying - HTTPS connection. + Authentication user and password. The returned instance is a proxy object with methods that can be used to invoke corresponding RPC calls on the remote server. If the remote server supports the _______________________________________________ Python-checkins mailing list -- python-checkins@python.org To unsubscribe send an email to python-checkins-le...@python.org https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: arch...@mail-archive.com