From: Ronald Oussoren Date: Sun, 27 Jun 2010 14:26:30 +0000 (+0000) Subject: Merged revisions 82284 via svnmerge from X-Git-Tag: v3.2a1~438 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ab90f8e6a1a2f3f13b4775f431c75ec995a048d1;p=python Merged revisions 82284 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r82284 | ronald.oussoren | 2010-06-27 15:59:39 +0200 (Sun, 27 Jun 2010) | 4 lines Fix for Issue8883: without this patch test_urllib will fail when there is a bare IP address in the "Bypass proxy settings for these Hosts & Domains" list on MacOSX. ........ --- diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py index 15e2dde819..f7c7416f34 100644 --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -2204,8 +2204,13 @@ if sys.platform == 'darwin': continue base = ip2num(m.group(1)) - mask = int(m.group(2)[1:]) - mask = 32 - mask + mask = m.group(2) + if mask is None: + mask = 8 * (m.group(1).count('.') + 1) + + else: + mask = int(mask[1:]) + mask = 32 - mask if (hostIP >> mask) == (base >> mask): return True