Skip to content

Commit

Permalink
ssl.OP_ENABLE_KTLS should exist on linux (python#10778)
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn authored Sep 26, 2023
1 parent 9f4edca commit b23042e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions stdlib/ssl.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 0 additions & 2 deletions tests/stubtest_allowlists/linux-py312.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ mmap.MAP_STACK
resource.prlimit
signal.sigtimedwait
signal.sigwaitinfo
ssl.OP_ENABLE_KTLS
ssl.Options.OP_ENABLE_KTLS
tty.__all__
tty.cfmakecbreak
tty.cfmakeraw
Expand Down

0 comments on commit b23042e

Please sign in to comment.