Kaydet (Commit) 1aa999c4 authored tarafından Ronald Oussoren's avatar Ronald Oussoren

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

IP addresses in the proxy exception list.
üst 19199830
...@@ -1396,7 +1396,7 @@ if sys.platform == 'darwin': ...@@ -1396,7 +1396,7 @@ if sys.platform == 'darwin':
else: else:
mask = int(mask[1:]) mask = int(mask[1:])
mask = 32 - mask mask = 32 - mask
if (hostIP >> mask) == (base >> mask): if (hostIP >> mask) == (base >> mask):
return True return True
......
...@@ -43,6 +43,9 @@ Core and Builtins ...@@ -43,6 +43,9 @@ Core and Builtins
Library 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 - Issue #11131: Fix sign of zero in plus and minus operations when
the context rounding mode is ROUND_FLOOR. the context rounding mode is ROUND_FLOOR.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment