Skip to content

Commit 1a94821

Browse files
authored
Change sys.lazy_modules type from dict to set
1 parent 60a6695 commit 1a94821

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stdlib/sys/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ maxunicode: int
5353
meta_path: list[MetaPathFinderProtocol]
5454
modules: dict[str, ModuleType]
5555
if sys.version_info >= (3, 15):
56-
lazy_modules: dict[str, set[str]]
56+
lazy_modules: set[str]
5757
orig_argv: list[str]
5858
path: list[str]
5959
path_hooks: list[Callable[[str], PathEntryFinderProtocol]]

0 commit comments

Comments
 (0)