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
Current implementation of hash_callable() function calculates hash of a function by looking into function's source code. But if original function calls some helper functions defined in the same module, and those helper functions change this won't affect the hash calculation of original function - hash will stay the same.
We should change this to include helper function calculation as well. Built-ins, imported functions should be ignored.