Expand description
mollify trace <module> — the static dependency neighborhood of a module:
what it imports (callees, “down”) and what imports it (callers, “up”). A
lightweight, deterministic answer to “what breaks if I touch this?” built
straight from the import graph (fallow’s trace, in Python terms).
Structs§
- Trace
- The import neighborhood of a target module, both directions, sorted.
Functions§
- module
- Resolve
queryto a module (exact dotted match, else suffix match) and compute its import neighborhood.Noneif nothing matches.