Closed
Description
would be nice as @jreback says to implement this since indices are supposed to be immutable. currently they try to hash the underlying ndarray
which of course fails because it is mutable.
succinct reasoning behind why you need immutability for hashables
python docs quote about using ^
(exclusive or) in the implementation
but see this answer for a way to hash numpy arrays.