cpython: 60c5c77c0190 (original) (raw)

Mercurial > cpython

changeset 104412:60c5c77c0190 3.6

Issue #28389: Merge from 3.5 [#28389]

Berker Peksag berker.peksag@gmail.com
date Sun, 09 Oct 2016 18🔞55 +0300
parents f8d84a3c9e86(current diff)94c9c314f5d9(diff)
children 5f9351bc317e 019c5c2f1239
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 @@ -568,33 +568,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