[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
@@ -14,7 +14,7 @@ from _typeshed import (
)
from collections.abc import Iterable, Iterator
from types import GenericAlias, TracebackType
from typing import IO, Any, AnyStr, Generic, Literal, overload
from typing import IO, Any, AnyStr, Final, Generic, Literal, overload
from typing_extensions import Self, deprecated
__all__ = [
@@ -34,7 +34,7 @@ __all__ = [
]
# global variables
TMP_MAX: int
TMP_MAX: Final[int]
tempdir: str | None
template: str