Update asyncio.constants module for python3.12 (#10535)

This commit is contained in:
Nikita Sobolev
2023-08-06 17:30:55 +03:00
committed by GitHub
parent 86218a52b7
commit 3968308e74
2 changed files with 2 additions and 1 deletions

View File

@@ -11,6 +11,8 @@ 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: int