[issue11375] urllib2 over SOCKS doesn't use proxy for DNS

2011-06-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue11375] urllib2 over SOCKS doesn't use proxy for DNS

2011-05-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: Looks like a bug in the third-party "socks" module rather than in urllib. You should report it there. -- nosy: +pitrou resolution: -> invalid status: open -> pending ___ Python tracker

[issue11375] urllib2 over SOCKS doesn't use proxy for DNS

2011-05-07 Thread torstenb
Changes by torstenb : -- nosy: +torstenb ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue11375] urllib2 over SOCKS doesn't use proxy for DNS

2011-03-02 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- assignee: -> orsenthil nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue11375] urllib2 over SOCKS doesn't use proxy for DNS

2011-03-02 Thread Jérôme Radix
Changes by Jérôme Radix : -- nosy: +jerome.radix ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue11375] urllib2 over SOCKS doesn't use proxy for DNS

2011-03-02 Thread OJW
New submission from OJW : #!/usr/bin/python import socks import socket socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS4, "127.0.0.1", 9050, True) socket.socket = socks.socksocket import urllib2 print urllib2.urlopen("http://example.com/";).read() Expected result: all network communications go th