Blame SOURCES/00185-urllib2-honors-noproxy-for-ftp.patch

925e6b
diff -up Python-2.7.5/Lib/urllib2.py.orig Python-2.7.5/Lib/urllib2.py
925e6b
--- Python-2.7.5/Lib/urllib2.py.orig	2013-07-17 12:22:58.595525622 +0200
925e6b
+++ Python-2.7.5/Lib/urllib2.py	2013-07-17 12:19:59.875898030 +0200
925e6b
@@ -728,6 +728,8 @@ class ProxyHandler(BaseHandler):
925e6b
         if proxy_type is None:
925e6b
             proxy_type = orig_type
925e6b
 
925e6b
+        req.get_host()
925e6b
+
925e6b
         if req.host and proxy_bypass(req.host):
925e6b
             return None
925e6b