Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Doc/library/sys.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1484,9 +1484,9 @@ always available. Unless explicitly noted otherwise, all variables are read-only

.. data:: lazy_modules

A :class:`set` of fully qualified module name strings that have been lazily
imported in the current interpreter but not yet loaded. When a
lazily imported module is accessed for the first time, its name is removed
A :class:`set` of strings capturing lazily imported modules or module members
in the current interpreter. When a lazily imported module or module member
is first accessed and its delayed import is successful, its name is removed
from this set.

This attribute is intended for debugging and introspection.
Expand Down
Loading