[issue28389] xmlrpc.client HTTP proxy example code does not work

2016-10-09 Thread Attila Vangel
Attila Vangel added the comment: Thanks for fixing this issue. I checked the changed documentation online, and I came up with a very similar solution. One difference is that although this example overrides the make_connection() method, but omits the following lines which are present in the

[issue28389] xmlrpc.client HTTP proxy example code does not work

2016-10-08 Thread Attila Vangel
Attila Vangel added the comment: It's my pleasure. It was somewhat similar: - the set_proxy() is the same - for the make_connection() I gave the necessary clues, so one can create the code and you can use that in a way that I don't have to spend time on the PSF Contributor

[issue28389] xmlrpc.client HTTP proxy example code does not work

2016-10-08 Thread Attila Vangel
Attila Vangel added the comment: Hi, thx for the quick turnaround. I tried the proxy.py (on python 3.5) of course replacing 'YOUR_PROXY' with '10.144.1.11:8080' according to my environment. python3 proxy.py Traceback (most recent call last): File "proxy.py

[issue28389] xmlrpc.client HTTP proxy example code does not work

2016-10-08 Thread Attila Vangel
Attila Vangel added the comment: I tested it also on Python 3.4.3. I got the same error. -- ___ Python tracker <http://bugs.python.org/issue28389> ___ ___ Pytho

[issue28389] xmlrpc.client HTTP proxy example code does not work

2016-10-08 Thread Attila Vangel
Changes by Attila Vangel : -- versions: +Python 3.4 ___ Python tracker <http://bugs.python.org/issue28389> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28389] xmlrpc.client HTTP proxy example code does not work

2016-10-08 Thread Attila Vangel
New submission from Attila Vangel: Go to https://docs.python.org/3/library/xmlrpc.client.html Under '21.26.8. Example of Client Usage' -> 'To access an XML-RPC server through a HTTP proxy, you need to define a custom transport. The following example shows how:' copy th