From ca9427a37f117a9b4449baa9a99f5415de259a50 Mon Sep 17 00:00:00 2001 From: Victorien <65306057+Viicos@users.noreply.github.com> Date: Fri, 4 Sep 2026 15:24:55 +0200 Subject: [PATCH] Remove `__name__` property from `LazyImportType` --- stdlib/types.pyi | 2 -- 1 file changed, 2 deletions(-) diff --git a/stdlib/types.pyi b/stdlib/types.pyi index ad9019598f79..457cf609da8c 100644 --- a/stdlib/types.pyi +++ b/stdlib/types.pyi @@ -610,8 +610,6 @@ if sys.version_info >= (3, 15): @final class LazyImportType: - @property - def __name__(self) -> str: ... def resolve(self) -> Any: ... @final