mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
16 lines
381 B
Python
16 lines
381 B
Python
import enum
|
|
import sys
|
|
from typing_extensions import Literal
|
|
|
|
LOG_THRESHOLD_FOR_CONNLOST_WRITES: Literal[5]
|
|
ACCEPT_RETRY_DELAY: Literal[1]
|
|
DEBUG_STACK_DEPTH: Literal[10]
|
|
if sys.version_info >= (3, 7):
|
|
SSL_HANDSHAKE_TIMEOUT: float
|
|
SENDFILE_FALLBACK_READBUFFER_SIZE: Literal[262144]
|
|
|
|
class _SendfileMode(enum.Enum):
|
|
UNSUPPORTED: int
|
|
TRY_NATIVE: int
|
|
FALLBACK: int
|