mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-07-18 06:10:11 +08:00
[stdlib] Mark constants as Final (#14577)
This commit is contained in:
+1
-1
@@ -6,7 +6,7 @@ from typing import Any, AnyStr, Final, Generic, Literal
|
||||
|
||||
__all__ = ["clear_cache", "cmp", "dircmp", "cmpfiles", "DEFAULT_IGNORES"]
|
||||
|
||||
DEFAULT_IGNORES: list[str]
|
||||
DEFAULT_IGNORES: Final[list[str]]
|
||||
BUFSIZE: Final = 8192
|
||||
|
||||
def cmp(f1: StrOrBytesPath, f2: StrOrBytesPath, shallow: bool | Literal[0, 1] = True) -> bool: ...
|
||||
|
||||
Reference in New Issue
Block a user