summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2018-02-24 13:35:56 (GMT)
committerGitHub <noreply@github.com>2018-02-24 13:35:56 (GMT)
commitaef1283ba428e33397d87cee3c54a5110861552d (patch)
tree39b2587941610bcb660a8cc1c59e8177197d9ec8 /Misc
parentc29c03a34a9f3c82704b66f323ce5ea9dc89c8af (diff)
downloadcpython-aef1283ba428e33397d87cee3c54a5110861552d.zip
cpython-aef1283ba428e33397d87cee3c54a5110861552d.tar.gz
cpython-aef1283ba428e33397d87cee3c54a5110861552d.tar.bz2
bpo-32819: Simplify and improve ssl.match_hostname (#5620)
ssl.match_hostname() has been simplified and no longer depends on re and ipaddress module for wildcard and IP addresses. Error reporting for invalid wildcards has been improved. Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-02-11-15-54-41.bpo-32819.ZTRX2Q.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-02-11-15-54-41.bpo-32819.ZTRX2Q.rst b/Misc/NEWS.d/next/Library/2018-02-11-15-54-41.bpo-32819.ZTRX2Q.rst
new file mode 100644
index 0000000..7d57bf6
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-02-11-15-54-41.bpo-32819.ZTRX2Q.rst
@@ -0,0 +1,3 @@
+ssl.match_hostname() has been simplified and no longer depends on re and
+ipaddress module for wildcard and IP addresses. Error reporting for invalid
+wildcards has been improved.