cpython: 94c9c314f5d9 (original) (raw)

Mercurial > cpython

changeset 104411:94c9c314f5d9 3.5

Issue #28389: Fix ProxiedTransport example in xmlrpc.client documentation [#28389]

Berker Peksag berker.peksag@gmail.com
date Sun, 09 Oct 2016 18🔞21 +0300
parents 7871ec789a27
children 60c5c77c0190 a3b162d5e70a
files Doc/library/xmlrpc.client.rst
diffstat 1 files changed, 15 insertions(+), 21 deletions(-)[+] [-] Doc/library/xmlrpc.client.rst 36

line wrap: on

line diff

--- a/Doc/library/xmlrpc.client.rst +++ b/Doc/library/xmlrpc.client.rst @@ -555,33 +555,27 @@ Example of Client Usage print("ERROR", v) To access an XML-RPC server through a HTTP proxy, you need to define a custom -transport. The following example shows how: - -.. Example taken from http://lowlife.jp/nobonobo/wiki/xmlrpcwithproxy.html[](#l1.9) +transport. The following example shows how:: -:: -

+

def make_connection(self, host):

-

-

Example of Client and Server Usage