mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
ssl.OP_ENABLE_KTLS should exist on linux (#10778)
This commit is contained in:
@@ -203,7 +203,6 @@ class Options(enum.IntFlag):
|
||||
OP_ENABLE_MIDDLEBOX_COMPAT: int
|
||||
if sys.version_info >= (3, 12):
|
||||
OP_LEGACY_SERVER_CONNECT: int
|
||||
if sys.version_info >= (3, 12) and sys.platform != "linux":
|
||||
OP_ENABLE_KTLS: int
|
||||
if sys.version_info >= (3, 11):
|
||||
OP_IGNORE_UNEXPECTED_EOF: int
|
||||
@@ -227,7 +226,6 @@ if sys.version_info >= (3, 8):
|
||||
OP_ENABLE_MIDDLEBOX_COMPAT: Options
|
||||
if sys.version_info >= (3, 12):
|
||||
OP_LEGACY_SERVER_CONNECT: Options
|
||||
if sys.version_info >= (3, 12) and sys.platform != "linux":
|
||||
OP_ENABLE_KTLS: Options
|
||||
if sys.version_info >= (3, 11):
|
||||
OP_IGNORE_UNEXPECTED_EOF: Options
|
||||
|
||||
Reference in New Issue
Block a user