Skip to main content

Module trace

Module trace 

Source
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 query to a module (exact dotted match, else suffix match) and compute its import neighborhood. None if nothing matches.