We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e6f905 commit 1e21cf6Copy full SHA for 1e21cf6
1 file changed
Lib/test/test_ssl.py
@@ -5074,14 +5074,6 @@ def test_got_eof(self):
5074
sslsock.do_handshake()
5075
5076
self.assertEqual(sslsock.pending(), 0)
5077
- try:
5078
- sslsock.shutdown(socket.SHUT_WR)
5079
- except OSError as exc:
5080
- self.assertEqual(exc.errno, errno.ENOTCONN)
5081
- else:
5082
- # On Windows and on OpenSSL 1.1.1, shutdown() doesn't
5083
- # raise an error
5084
- pass
5085
5086
5087
@unittest.skipUnless(has_tls_version('TLSv1_3') and ssl.HAS_PHA,
0 commit comments