mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> Co-authored-by: Alex Waygood <alex.waygood@gmail.com>
21 lines
565 B
Python
21 lines
565 B
Python
import enum
|
|
import sys
|
|
from typing import Literal
|
|
|
|
LOG_THRESHOLD_FOR_CONNLOST_WRITES: Literal[5]
|
|
ACCEPT_RETRY_DELAY: Literal[1]
|
|
DEBUG_STACK_DEPTH: Literal[10]
|
|
SSL_HANDSHAKE_TIMEOUT: float
|
|
SENDFILE_FALLBACK_READBUFFER_SIZE: Literal[262144]
|
|
if sys.version_info >= (3, 11):
|
|
SSL_SHUTDOWN_TIMEOUT: float
|
|
FLOW_CONTROL_HIGH_WATER_SSL_READ: Literal[256]
|
|
FLOW_CONTROL_HIGH_WATER_SSL_WRITE: Literal[512]
|
|
if sys.version_info >= (3, 12):
|
|
THREAD_JOIN_TIMEOUT: Literal[300]
|
|
|
|
class _SendfileMode(enum.Enum):
|
|
UNSUPPORTED = 1
|
|
TRY_NATIVE = 2
|
|
FALLBACK = 3
|