mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
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:
parent
19199830f7
commit
1aa999c49e
2 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue