Lazy imports for Python
Lazy imports for Python
Posted Sep 8, 2022 7:40 UTC (Thu) by yaap (subscriber, #71398)Parent article: Lazy imports for Python
Interesting, it looks like a distant cousin of Emacs autoload package support: different in the details, but same goal to reduce start-up time. In Emacs an elisp package can declare some public commands as autoloaded, they will be implemented as stubs that load the full package on first use (and the stubs are replaced by the full commands).