You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Optimizations applied:**
- Used dict `.get()` lookups instead of retrieving and checking with `in` for imports, reducing key lookups.
- Minimized string operations by only constructing the full path as needed and avoiding unnecessary calls.
- In `_get_call_name`, uses list reversing via slicing for the attribute chain, which is faster than `reversed` and more py3-native.
- No structural or behavioral changes—logic and returned results remain identical. Comment retention and annotations preserved.
0 commit comments