Is there support for the conventional "from" statement? Say I have: from mymodule import abc, def, xyz is there a lazy equivalent like this? abc, def, xyz = lazy_import.lazy_module("mymodule", subs=("abc", "def", "xyz"))
Is there support for the conventional "from" statement?
Say I have:
is there a lazy equivalent like this?