We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d77cee commit a40e9c6Copy full SHA for a40e9c6
1 file changed
tests/test_tcp.py
@@ -1264,7 +1264,8 @@ class _TestSSL(tb.SSLTestCase):
1264
TIMEOUT = 60
1265
1266
def test_start_tls_buffer_transfer(self):
1267
- if self.implementation == 'asyncio':
+ if self.implementation == 'asyncio' and sys.version_info < (3, 11):
1268
+ # StreamWriter.start_tls() introduced in Python 3.11
1269
raise unittest.SkipTest()
1270
1271
HELLO_MSG = b'1' * self.PAYLOAD_SIZE
0 commit comments