They hold the legacy representation of ``sys.last_exc``, as returned
from :func:`exc_info` above.
+
+.. 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
+ from this set.
+
+ This attribute is intended for debugging and introspection.
+
+ See also :func:`set_lazy_imports` and :pep:`810`.
+
+ .. versionadded:: 3.15
+
+
.. data:: maxsize
An integer giving the maximum value a variable of type :c:type:`Py_ssize_t` can
.. nonce: aB3xKm
.. section: Core and Builtins
-Fixed ``sys.lazy_modules`` to include lazy modules without submodules. Patch
+Fixed :py:attr:`sys.lazy_modules` to include lazy modules without submodules. Patch
by Bartosz Sławecki.
..