We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0460beb commit b0e3501Copy full SHA for b0e3501
tests/test_tcp.py
@@ -1264,7 +1264,10 @@ class _TestSSL(tb.SSLTestCase):
1264
TIMEOUT = 60
1265
1266
def test_start_tls_buffer_transfer(self):
1267
- if self.implementation == 'asyncio' and sys.version_info[:2] <= (3, 11):
+ if (
1268
+ self.implementation == 'asyncio'
1269
+ and sys.version_info[:2] <= (3, 11)
1270
+ ):
1271
# StreamWriter.start_tls() introduced in Python 3.11
1272
raise unittest.SkipTest(
1273
'StreamWriter.start_tls() not supported'
0 commit comments