Yes, under PEP 690 lazy imports, after from X import Y
the symbol Y
is lazy and the import of X
does not actually occur until Y
is later referenced.
Yes, under PEP 690 lazy imports, after from X import Y
the symbol Y
is lazy and the import of X
does not actually occur until Y
is later referenced.