mirror of
https://github.com/astral-sh/ruff
synced 2026-01-23 06:20:55 -05:00
## Summary Rename two functions with outdated names (they used to return `Type`s): * `bindings_ty` => `symbol_from_bindings` (returns `Symbol`) * `declarations_ty` => `symbol_from_declarations` (returns a `SymbolAndQualifiers` result) I chose `symbol_from_*` instead of `*_symbol` as I found the previous name quite confusing. Especially since `binding_ty` and `declaration_ty` also exist (singular). ## Test Plan — --------- Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>