Update incorrect or incomplete constants in distutils (#12536)

This commit is contained in:
Avasam
2024-08-17 14:51:42 -04:00
committed by GitHub
parent b3c077f4c5
commit 45627d18dd
3 changed files with 12 additions and 6 deletions

View File

@@ -1,10 +1,10 @@
from typing import Literal, overload
from typing import Final, Literal, overload
from typing_extensions import deprecated
from setuptools._distutils.ccompiler import CCompiler
PREFIX: str
EXEC_PREFIX: str
PREFIX: Final[str]
EXEC_PREFIX: Final[str]
@overload
@deprecated("SO is deprecated, use EXT_SUFFIX. Support will be removed when this module is synchronized with stdlib Python 3.11")