[stdlib] Mark constants as Final (#14577)

This commit is contained in:
Semyon Moroz
2025-08-15 11:19:03 +00:00
committed by GitHub
parent 554701e9b6
commit 85a787bba3
62 changed files with 1601 additions and 1583 deletions
+2 -2
View File
@@ -5,7 +5,7 @@ from _typeshed import ProfileFunction, TraceFunction
from collections.abc import Callable, Iterable, Mapping
from contextvars import ContextVar
from types import TracebackType
from typing import Any, TypeVar, final
from typing import Any, Final, TypeVar, final
from typing_extensions import deprecated
_T = TypeVar("_T")
@@ -67,7 +67,7 @@ if sys.version_info >= (3, 10):
def stack_size(size: int = 0, /) -> int: ...
TIMEOUT_MAX: float
TIMEOUT_MAX: Final[float]
ThreadError = _thread.error
local = _thread._local