summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2018-09-12 21:03:54 (GMT)
committerGitHub <noreply@github.com>2018-09-12 21:03:54 (GMT)
commit0dd71807a98c4a86ece2aea869ea99f09204b16b (patch)
tree24739800640a07821898beb40f2885e9935477a9 /Misc
parent5b10d5111d7a855297654af9045f8907b7d3dd08 (diff)
downloadcpython-0dd71807a98c4a86ece2aea869ea99f09204b16b.zip
cpython-0dd71807a98c4a86ece2aea869ea99f09204b16b.tar.gz
cpython-0dd71807a98c4a86ece2aea869ea99f09204b16b.tar.bz2
bpo-34630: Skip logging SSL certificate errors by asyncio code (GH-9169)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-09-11-10-00-53.bpo-34630.YbqUS6.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-09-11-10-00-53.bpo-34630.YbqUS6.rst b/Misc/NEWS.d/next/Library/2018-09-11-10-00-53.bpo-34630.YbqUS6.rst
new file mode 100644
index 0000000..452bcb6
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-09-11-10-00-53.bpo-34630.YbqUS6.rst
@@ -0,0 +1,2 @@
+Don't log SSL certificate errors in asyncio code (connection error logging
+is skipped already).