summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-04-30 01:03:40 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-04-30 01:03:40 +0000
commitaa27982ffca6ebfaad0a776e93e98a30e95b8b88 (patch)
tree64d9c45f8e0f7904056029a0bc92f51ebdb731b0 /Misc
parent6d34bbbfc7ac1a5a8d518ed1b767239de26650c5 (diff)
downloadcpython-git-aa27982ffca6ebfaad0a776e93e98a30e95b8b88.tar.gz
Issue #26864: Fix case insensitivity and suffix comparison with no_proxy
Patch by Xiang Zhang.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e887e9052f..67c2a17e5d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -107,6 +107,11 @@ Core and Builtins
Library
-------
+- Issue #26864: In urllib.request, change the proxy bypass host checking
+ against no_proxy to be case-insensitive, and to not match unrelated host
+ names that happen to have a bypassed hostname as a suffix. Patch by Xiang
+ Zhang.
+
- Issue #26634: recursive_repr() now sets __qualname__ of wrapper. Patch by
Xiang Zhang.