[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 -1
View File
@@ -3,10 +3,11 @@ import sys
from _typeshed import StrOrBytesPath
from collections.abc import Iterable, Sequence
from types import SimpleNamespace
from typing import Final
logger: logging.Logger
CORE_VENV_DEPS: tuple[str, ...]
CORE_VENV_DEPS: Final[tuple[str, ...]]
class EnvBuilder:
system_site_packages: bool