New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-43921: Fix test_ssl.test_wrong_cert_tls13() on Windows #26502
Conversation
Fix test_ssl.test_wrong_cert_tls13(): use suppress_ragged_eofs=False, since read() can raise ssl.SSLEOFError on Windows.
See #26501 (comment) for my debug notes on this issue. |
cc @tiran @pablogsal: a PR fixing test_wrong_cert_tls13() similar to (but different than) my previous PR #26489 fixing test_pha_required_nocert(). |
Thanks @vstinner for the PR |
Sorry @vstinner, I had trouble checking out the |
Thanks @vstinner for the PR |
GH-26518 is a backport of this pull request to the 3.10 branch. |
Fix test_ssl.test_wrong_cert_tls13(): use suppress_ragged_eofs=False,
since read() can raise ssl.SSLEOFError on Windows.
https://bugs.python.org/issue43921