Updating hashes
Summary: GitHub commits:
https://github.com/facebook/CacheLib/commit/f2f83ceb43294e383bc4524bc294b681910737eb https://github.com/facebook/fb303/commit/ce8af6280bc7ce336ddc05064d0165cfdcb24b58 https://github.com/facebook/fbthrift/commit/da27a027f856b63281e2c36b1a35d3c38a7229cf https://github.com/facebook/folly/commit/e243181570d06e6e746bc3995f0745f0e3dfd532 https://github.com/facebook/hermes/commit/36ab30689cf94a66203f5f99d9a4dd4d7930c515 https://github.com/facebook/mvfst/commit/3fc45489431dea92fbbdbf6d74161da416178f1a https://github.com/facebook/proxygen/commit/4954ad12adc177a9654ef7b5f9c30a1bdc6d6658 https://github.com/facebook/pyrefly/commit/b4cf749b51534e0886d9568da126cbd7dae784cd https://github.com/facebook/wangle/commit/ab25c8c58a444e62adb5ba9cb59aa25d4aa1fb45 https://github.com/facebookexperimental/edencommon/commit/f7388c02828151cd5371e1a6d572f741aa7a31f2 https://github.com/facebookexperimental/rust-shed/commit/aaefb4dbc2685df0a63721e3ff2b45e0f5c3b124 https://github.com/facebookincubator/fizz/commit/7de8f52e9878206cd3a0192d9b4295cd58cd2ac9
Reviewed By: ajb85
fbshipit-source-id: 2f63954b9a484cc3590def6cf8ac9d41494bc41f
版权所有:中国计算机学会技术支持:开源发展技术委员会
京ICP备13000930号-9
京公网安备 11010802047560号
Lifeguard for Lazy Imports
A fast static analysis tool to aid adoption of Lazy Imports in Python.
What are Lazy Imports?
In Python, every
importstatement executes immediately when a module is loaded. This overhead is incurred regardless of whether that import is actually used. PEP 810 introduces explicit Lazy Imports to Python, which defer the actual loading of a module until the imported name is first accessed. Lazy Imports can significantly reduce memory usage, startup times, and import overhead, especially in large codebases with deep dependency trees.However, some Python patterns depend on imports executing immediately. For example:
sys.modulesmanipulation — code that reads or writessys.modulesassumes prior imports have already executed.__init_subclass__— class creation side effects may depend on imports being resolved.Adapting an existing codebase to use Lazy Imports can be a daunting task, especially at scale. Lifeguard identifies these incompatible patterns so you can adopt Lazy Imports with confidence.
How does Lifeguard work?
Lifeguard analyzes Python source files for a given project in parallel. It walks each module’s AST to detect effects and maps Lazy-Imports-incompatible effects to errors. The analyzer takes a conservative approach towards its analysis: any module that cannot be programmatically determined to be safe to import lazily is marked unsafe by default. This means Lifeguard will err on the side of marking potentially compatible modules as incompatible, leaving potential performance optimizations on the table in favor of production safety.
For a deeper look at the analysis pipeline and architecture, see docs/architecture.md.
Project Stage: Beta
Lifeguard is in active development. We are aiming to be ready for general use by the Python 3.15 final release.
Items on our roadmap
lazy importsyntax from PEP 810, pass--python-version 3.15.Install from PyPI
Lifeguard is published on PyPI with prebuilt wheels for Linux, macOS, and Windows (x86-64 and ARM64). It requires Python 3.12 or newer and no Rust toolchain:
python -m lifeguard_lazy_importsis equivalent to thelifeguardcommand. Thecargo run --examples below build and run the tool from source; with the installed package, replacecargo run --withlifeguard. PyPI releases are cut manually and can lag behind the main branch. Runlifeguard --helpto see what your installed version supports.Prerequisites for Building from Source
git clone --recurse-submodules https://github.com/facebook/Lifeguard.gitIf you already cloned without
--recurse-submodules, rungit submodule update --init --recursive.Quick Start
The fastest way to try Lifeguard is the
run-treesubcommand, which discovers.pyfiles under a directory and follows resolvable top-level imports. File and directory names below the input root must be ASCII Python identifiers; other paths are skipped.For example, using the bundled sample project:
For a full walkthrough including interpreting the output, see GETTING_STARTED.md.
Running Lifeguard
For larger projects where you need more control, you can generate a source DB — a JSON file that tells Lifeguard the full set of Python files in your project and their module paths (see Input Format for details). Follow these steps:
Optionally, if your project has library dependencies, you can point Lifeguard at your site-packages by adding a
lifeguardsection to yourpyproject.toml:You can find out your site-packages path via
python -m site. Bothgen-source-dbandrun-treeread this section from<INPUT_DIR>/pyproject.toml. Relativesite_packagespaths are resolved againstINPUT_DIR. You can override the setting with--site-packages /path/to/site-packages.Note: Discovery follows top-level import statements and may not discover all dependencies, such as imports nested in functions or conditional blocks outside the input tree. If Lifeguard reports missing modules, you may need to manually add entries to the generated source DB. For explicit lazy syntax, pass
--python-version 3.15to both source discovery and analysis.OUTPUT_PATH.Example Verbose Output:
Input Format
In some modes, Lifeguard requires a source DB — a JSON file mapping Python module paths to their locations on disk. The format is:
You can generate this automatically using
cargo run -- gen-source-db(see Running Lifeguard), or create it by hand.Output Format
Lifeguard writes a JSON file with two fields:
With
--verbose-output, the JSON also includesIMPLICIT_IMPORTS(a module-to-dependencies mapping) andIMPORT_CYCLES(lists of modules in each cycle). Use--sorted-outputfor deterministic ordering of these fields.LAZY_ELIGIBLEA dictionary mapping modules that are safe for Lazy Imports to a list of their dependencies that must be imported eagerly. For example:
"module1": []—module1is fully safe for Lazy Imports with no restrictions."module2": ["module3", "module4"]—module2is safe for Lazy Imports, but only ifmodule3andmodule4have already been imported.Important: Modules that do not appear as keys in this dictionary have been analyzed as unsafe for Lazy Imports.
LOAD_IMPORTS_EAGERLYA set of modules where all imports within the module must be loaded eagerly. Lazy Imports is essentially temporarily disabled for these modules. Note the distinction: other modules can still lazily import a module in the
LOAD_IMPORTS_EAGERLYset, but when that module does load, its ownimportstatements must execute immediately rather than being deferred.This set is only used for specific corner cases:
__del__) — unpredictable execution timing means imports must be available at finalization.exec()calls — dynamic code execution negates static analysis guarantees.sys.modulesaccess — reading or writingsys.modulescould depend on prior imports having already executed.For more details, see docs/load_imports_eagerly.md.
Using the Output
As a standalone linter
Lifeguard can be used as a standalone linter to identify which specific lines in your codebase are incompatible with Lazy Imports. Run the analyzer with
--verbose-outputto get a human-readable report showing per-module errors with line numbers (see Running Lifeguard). This lets you treat Lifeguard like a linter: run it in CI or locally, review the flagged lines, and fix them. In this manner, Lifeguard is used as a guide to safely enable Lazy Imports.To drive a lazy import loader
The JSON output is designed to drive a lazy import loader’s filter function. In Python 3.15,
sys.set_lazy_imports_filter()installs a callback that controls which imports are deferred and which are loaded eagerly. Lifeguard’s output provides the data needed to build this filter — usingLAZY_ELIGIBLEto identify safe modules and their constraints, andLOAD_IMPORTS_EAGERLYto identify modules that need all imports resolved upfront.We plan to provide tooling for easy ingestion of Lifeguard’s output ahead of the Python 3.15 release. This is a work in progress.
Implementation
Lifeguard is implemented in Rust. We leverage ruff for AST traversal and re-use several crates from pyrefly. We also extend
.pyistub files to annotate known side effects in third-party libraries — for example, marking that a particular module-level function call in a dependency has observable behavior. These stubs are stored in theresources/folder. See resources/stubs/stubs.md for details on how effect annotations work alongside standard type stubs.License
By contributing to Lifeguard, you agree that your contributions will be licensed under the LICENSE file in the root directory of this source tree.