Alejandro MJ added the comment: Thanks a lot for your help!
I've tested it in Linux, Python version 3.3.5 and the message obtained is this: [404 Not Found]. The script is this one (changing of course the ip_address and the proxy_url values): import http.client, urllib.parse data = urllib.parse.urlencode({'nombre': 'HERVAS INFANTE ALBERTO'}) headers = {"Content-type": "application/x-www-form-urlencoded"} conn = http.client.HTTPConnection(proxy_url,8080, source_address=(ip_address, 0)) conn.set_tunnel("www.telexplorer.es",port=80) conn.request("POST", "/?zone=namwp",data,headers) response = conn.getresponse() print("Test 1: TE - ", response.status, response.reason) data = response.read() conn.close() How could I test that patch attached? I suppose that I have to install something on Suse? As I could read in some forums, I should launch this sentence: patch -p1 --dry-run < issue22041_1.patch Could you please help me with this points? thanks! ---------- nosy: +AlexMJ _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue22041> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com