mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-08-01 21:50:21 +08:00
[stdlib] Mark constants as Final (#14577)
This commit is contained in:
+7
-7
@@ -59,13 +59,13 @@ if sys.platform == "win32":
|
||||
def EnableReflectionKey(key: _KeyType, /) -> None: ...
|
||||
def QueryReflectionKey(key: _KeyType, /) -> bool: ...
|
||||
|
||||
HKEY_CLASSES_ROOT: int
|
||||
HKEY_CURRENT_USER: int
|
||||
HKEY_LOCAL_MACHINE: int
|
||||
HKEY_USERS: int
|
||||
HKEY_PERFORMANCE_DATA: int
|
||||
HKEY_CURRENT_CONFIG: int
|
||||
HKEY_DYN_DATA: int
|
||||
HKEY_CLASSES_ROOT: Final[int]
|
||||
HKEY_CURRENT_USER: Final[int]
|
||||
HKEY_LOCAL_MACHINE: Final[int]
|
||||
HKEY_USERS: Final[int]
|
||||
HKEY_PERFORMANCE_DATA: Final[int]
|
||||
HKEY_CURRENT_CONFIG: Final[int]
|
||||
HKEY_DYN_DATA: Final[int]
|
||||
|
||||
KEY_ALL_ACCESS: Final = 983103
|
||||
KEY_WRITE: Final = 131078
|
||||
|
||||
Reference in New Issue
Block a user