On Wed, 2 May 2018 11:26:35 +0200 Victor Stinner <vstin...@redhat.com> wrote: > > Brett Cannon is also working on a standard solution for lazy imports > since many years: > https://pypi.org/project/modutil/ > https://snarky.ca/lazy-importing-in-python-3-7/
AFAIK, Mercurial already has its own lazy importer. > Nick Coghlan is working on the C API to configure Python startup: PEP > 432. When it will be ready, maybe Mercurial could use a custom Python > optimized for its use case. > > IMHO Python import system is inefficient. We try too many alternative names. The overhead of importing is not in trying too many names, but in loading the module and executing its bytecode. > Why do we still check for the .pyc file outside __pycache__ directories? Because we support sourceless distributions. > Why do we have to check for 3 different names for .so files? See https://bugs.python.org/issue32387 Regards Antoine. _______________________________________________ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com