This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ned.deily
Recipients Andrew.Gross, ned.deily, orsenthil, ronaldoussoren
Date 2014-02-11.06:57:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1392101824.16.0.499190759394.issue20585@psf.upfronthosting.co.za>
In-reply-to
Content
It looks like the culprit is _scproxy, an internal C extension, that urllib2 (py2) and urllib.request (py3) use on OS X to access the system configuration for network proxies.  If you aren't using any proxies, a workaround is to define an environment variable:

    export no_proxy='*'

which causes urllib2/urllib to bypass checking the system configuration.

http://docs.python.org/2/library/urllib2.html#urllib2.ProxyHandler
History
Date User Action Args
2014-02-11 06:57:04ned.deilysetrecipients: + ned.deily, ronaldoussoren, orsenthil, Andrew.Gross
2014-02-11 06:57:04ned.deilysetmessageid: <1392101824.16.0.499190759394.issue20585@psf.upfronthosting.co.za>
2014-02-11 06:57:04ned.deilylinkissue20585 messages
2014-02-11 06:57:03ned.deilycreate