Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified

IP addresses in the proxy exception list.
This commit is contained in:
Ronald Oussoren 2011-03-14 18:53:59 -04:00
parent 19199830f7
commit 1aa999c49e
2 changed files with 4 additions and 1 deletions

View file

@ -1396,7 +1396,7 @@ if sys.platform == 'darwin':
else:
mask = int(mask[1:])
mask = 32 - mask
mask = 32 - mask
if (hostIP >> mask) == (base >> mask):
return True

View file

@ -43,6 +43,9 @@ Core and Builtins
Library
-------
- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified
IP addresses in the proxy exception list.
- Issue #11131: Fix sign of zero in plus and minus operations when
the context rounding mode is ROUND_FLOOR.