stdlib: add __slots__ (#14611)

This commit is contained in:
Jelle Zijlstra
2025-08-21 07:24:59 -07:00
committed by GitHub
parent 28abff1eb3
commit f32d9f08bd
38 changed files with 247 additions and 12 deletions
+1
View File
@@ -12,6 +12,7 @@ class SafeUUID(Enum):
unknown = None
class UUID:
__slots__ = ("int", "is_safe", "__weakref__")
def __init__(
self,
hex: str | None = None,