v2.6.1
Hotfix release.
Fixed
- Wildcard expansion no longer invents false edges to same-named definitions in the same module. An attribute call on an imported-but-unanalyzed module (e.g.
othermod.cache()) fell back to a*.cachewildcard, whichexpand_unknownsthen bound to any same-named definition whose module counts as imported — and since a module always "imports" itself, it wired a spurious edge to a localcache(). Expansion now fires only when the name actually appears as a bare reference in the source scope, so attribute accesses no longer leak into unrelated same-name functions. (#134)