summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2021-06-03 16:04:25 (GMT)
committerGitHub <noreply@github.com>2021-06-03 16:04:25 (GMT)
commitea0210fa8ccca769896847f25fc6fadfe9a717bc (patch)
tree091950938f972bfe81c9f4965e033114dd236d6c /Misc/NEWS.d
parent82ad22a97d4b5d7134424f12bd6a61167db7f4f8 (diff)
downloadcpython-ea0210fa8ccca769896847f25fc6fadfe9a717bc.zip
cpython-ea0210fa8ccca769896847f25fc6fadfe9a717bc.tar.gz
cpython-ea0210fa8ccca769896847f25fc6fadfe9a717bc.tar.bz2
bpo-43921: Fix test_ssl.test_wrong_cert_tls13() on Windows (GH-26502)
Fix test_ssl.test_wrong_cert_tls13(): use suppress_ragged_eofs=False, since read() can raise ssl.SSLEOFError on Windows.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Tests/2021-06-03-03-29-34.bpo-43921.nwH1FS.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2021-06-03-03-29-34.bpo-43921.nwH1FS.rst b/Misc/NEWS.d/next/Tests/2021-06-03-03-29-34.bpo-43921.nwH1FS.rst
new file mode 100644
index 0000000..30e0fad
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2021-06-03-03-29-34.bpo-43921.nwH1FS.rst
@@ -0,0 +1,3 @@
+Fix test_ssl.test_wrong_cert_tls13(): use ``suppress_ragged_eofs=False``,
+since ``read()`` can raise :exc:`ssl.SSLEOFError` on Windows. Patch by
+Victor Stinner.